A collection of plugins for Jekyll & Octopress
- filter_posts : filters any key/value pair from an array of posts.
- filter_featured : sample shortcut plugin that will return all posts with "featured: true" in the front matter.
{{ assign posts = site.posts | filter_posts: 'key', 'value'}}
{% for post in posts %}
...
{% endfor %}
{{ assign posts = site.posts | filter_featured}}
{% for post in posts %}
...
{% endfor %}