Skip to content

Instantly share code, notes, and snippets.

@bradonomics
Last active December 14, 2015 02:45
Show Gist options
  • Select an option

  • Save bradonomics/3cce65356f85bb5cb3bb to your computer and use it in GitHub Desktop.

Select an option

Save bradonomics/3cce65356f85bb5cb3bb to your computer and use it in GitHub Desktop.
Jekyll Categories on GitHub Pages (multiple categories) (_includes/post-categories.html)
{% if post %}
{% assign categories = post.categories %}
{% else %}
{% assign categories = page.categories %}
{% endif %}
{% for category in categories %}
<span class="entry-categories"><a href="{{ site.url }}/{{ page.category-url }}/" rel="category">{{ page.category }}</a></span>{% unless forloop.last %},{% endunless %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment