Octopress Abort Tag
Conditionally prevent a page from being rendered.
Installation
Add this line to your application's Gemfile:
gem 'octopress-abort-tag'
And then execute:
$ bundle
Or install it yourself as:
$ gem install octopress-abort-tag
Next add it to your gems list in Jekyll's _config.yml
gems:
- octopress-abort-tag
Usage
Syntax:
{% abort [condition] %}
Prevent a page from being rendered.
{% abort %}
Prevent an index page from being rendered if there are no posts.
{% abort unless site.posts.size > 0 %}
Contributing
- Fork it ( https://github.com/octopress/abort-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