Sha256: 7ca263c2f7a2008e8533e9f6632a684271aa6ceb6b27a867484f7ed931484708

Contents?: true

Size: 1.48 KB

Versions: 2

Compression:

Stored size: 1.48 KB

Contents

---
title: "Octopress Content For"
---

Add content_for and yield tags to Jekyll with conditional rendering and in-line filters.

[![Build Status](https://travis-ci.org/octopress/content-for.svg)](https://travis-ci.org/octopress/content-for)
[![Gem Version](http://img.shields.io/gem/v/octopress-content-for.svg)](https://rubygems.org/gems/octopress-content-for)
[![License](http://img.shields.io/:license-mit-blue.svg)](http://octopress.mit-license.org)

## Installation

Add this line to your application's Gemfile:

    gem 'octopress-content-for'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install octopress-content-for

Next add it to your gems list in Jekyll's `_config.yml`

    gems:
      - octopress-content-for

## Usage

Use it like a typical `content_for` tag.

    {% content_for awesome_content %}
    some content
    {% endcontent_for %}

    {% yield awesome_content %}  //=> some content

Use in-line filters.

    {% yield awesome_content | upcase %}  //=> SOME CONTENT

Use conditional rendering in both `content_for` and `yield` tags.

    {% content_for footer unless page.footer == false %}
    Footer!
    {% endcontent_for %}

    {% yield footer if page.footer %}

## Contributing

1. Fork it ( https://github.com/octopress/content-for/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
octopress-content-for-1.0.3 assets/docs/index.markdown
octopress-content-for-1.0.2 assets/docs/index.markdown