--- layout: default ---
{% if page.category %} {% for site_category in site.data.categories %} {% if site_category.slug == page.category %} {% assign category = site_category %} {% endif %} {% endfor %} {% if category %} {% capture category_content %} in {{ category.name }}{% endcapture %} {% endif %} {% else %} {% assign category_content = '' %} {% endif %} {% if page.tags.size > 0 %} {% capture tags_content %} tagged with {% endcapture %} {% for post_tag in page.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 %} {% if page.author %} {% assign author = site.data.authors[page.author] %} {% if author %} {% capture author_content_temp %}{{ author.name }}{% endcapture %} {% assign author_content = author_content_temp %} {% if author.twitter %} {% capture author_twitter %} {% endcapture %} {% capture tweet_link %} by @{{ author.twitter }}{% endcapture %} {% capture twitter_follow_author %}Follow @{{ author.twitter }}{% endcapture %} {% endif %} {% if author.linkedin %} {% capture author_linkedin %} {% endcapture %} {% endif %} {% if author.github %} {% capture author_github %} {% endcapture %} {% endif %} {% else %} {% assign author_content = page.author %} {% endif %} {% else %} {% assign author_content = page.author %} {% endif %}

{{ page.title }}

{% if page.subtitle %}

{{ page.subtitle }}

{% endif %}
{{ content }}