A Liquid block tag which makes it easy to wrap an include, render or yield tag with html.
Add this line to your application's Gemfile:
gem 'octopress-wrap-tag'
And then execute:
$ bundle
Or install it yourself as:
$ gem install octopress-wrap-tag
Next add it to your gems list in Jekyll's _config.yml
gems:
- octopress-wrap-tag
the wrap tag is basically just wrapping Octopress's include, render and yield tags with HTML in a liquid block tag. So all the features are the same.
The wrap tag supports all the same features that Octopress's include,
render and yield tags support. This also means that wrap yield
won't output anything if there isn't any content.
{% wrap include post.html %}
<article>{{ yield }}</article>
{% endwrap %}
{% wrap render ../LICENCE.md %}
<div class="licence-text">{{ yield }}</div>
{% endwrap %}
{% wrap yeild post_footer %}
<div class="post-footer">{{ yield }}</div>
{% endwrap %}
A great use case for wrap yield
is to add content sections to a
template which can be easily and optionally filled from a post or page by using the
content_for tag. Here's an example.
// In a page template
<aside class="sidebar">
{% wrap yield sidebar_before %}
<section>{{ yield }}</section>
{% endwrap %}
// Regular sidebar content goes here //
{% wrap yield sidebar_after %}
<section>{{ yield }}</section>
{% endwrap %}
</aside>
Now in any post or page you can add custom content to the sidebar with a content_for tag.
// In a post
{% content_for sidebar_before %}
<h4>About this post</h4>
...
{% endcontent_for %}
This content will appear at the top of the sidebar, wrapped in a section
element. The sidebar_after
section won't be
rendered since it wasn't set in this post.
The examples below only demonstrate wrapping the include tag for brevity, but as stated earlier, the wrap tag is basically just wrapping Octopress's include, render and yield tags with HTML in a liquid block tag. So all the features are the same.
// If a page has the following YAML front-matter
// sidebar: post_sidebar.html
{% wrap include page.sidebar %}
<aside>{{ yield }}</aside>
{% endwrap %}
Include partials conditionally, using if
, unless
and ternary logic.
{% wrap include page.sidebar if page.sidebar %}
<aside>{{ yield }}</aside>
{% endwrap %}
{% wrap include comments.html unless page.comments == false %}
<div class="post-comments">{{ yield }}</div>
{% endwrap %}
{% wrap include (post ? post_sidebar : page_sidebar) %}
<aside>{{ yield }}</aside>
{% endwrap %}
Filter included partials.
{% wrap include greeting.html %} yo, {{ yield }}{% endwrap %} //=> yo, what's up?
{% wrap include greeting.html %} yo, {{ yield | upcase }}{% endwrap %} //=> yo, WHAT'S UP?
{% wrap include greeting.html | upcase %} Yo, {{ yield }}{% endwrap %} //=> YO, WHAT'S UP?
It's easy to include a partial from an Ink theme or plugin.
Here's the syntax
{% wrap include [plugin-slug]:[partial-name] %}
{{ yield }}
{% endwrap %}
Some examples:
{% wrap include theme:sidebar.html %} // Include the sidebar from a theme plugin
<aside>{{ yield }}</aside>
{% endwrap %}
{% wrap include twitter:feed.html %} // Include the feed from a twitter plugin
<div class="twitter-feed">{{ yield }}</div>
{% endwrap %}
- Fork it ( https://github.com/octopress/wrap-tag/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request