--- layout: default ---
{% if post.category %} {% for site_category in site.data.categories %} {% if site_category.slug == post.category %} {% assign category = site_category %} {% endif %} {% endfor %} {% if category %} {% capture category_content %} in {{ category.name }}{% endcapture %} {% endif %} {% else %} {% assign category_content = '' %} {% endif %} {% if post.tags.size > 0 %} {% capture tags_content %} with tags {% endcapture %} {% for post_tag in post.tags %} {% for data_tag in site.data.tags %} {% if data_tag.slug == post_tag %} {% assign tag = data_tag %} {% endif %} {% endfor %} {% if tag %} {% capture tags_content_temp %}{{ tags_content }}{{ tag.name }}{% if forloop.last == false %}, {% endif %}{% endcapture %} {% assign tags_content = tags_content_temp %} {% endif %} {% endfor %} {% else %} {% assign tags_content = '' %} {% endif %}

{{ page.title }}

{% if page.subtitle %}

{{ page.subtitle }}

{% endif %} Posted by {% if page.author %}{{ page.author }}{% else %}{{ site.title }}{% endif %} on {{ page.date | date: "%B %-d, %Y" }} {{ category_content }}{{ tags_content }}
{{ content }}
{% include disqus.html %}