layout: default


<h1>

{{ page.title }}

</h1>

{% if page.image %}

<img src="{{ page.image }}">

{% endif %}

{% include post-metadata.html %}

{% if site.data.settings.post_navigation.postion contains 'top' %}

{% include post-navigation.html %}

{% endif %}

{{ content }}

<footer> <span class=“post-date”>

{{ site.data.settings.post_date_prefix }}
{% assign d = page.date | date: "%-d"  %}
{{ page.date | date: "%B" }}
{% case d %}
  {% when '1' or '21' or '31' %}{{ d }}st,
  {% when '2' or '22' %}{{ d }}nd,
  {% when '3' or '23' %}{{ d }}rd,
  {% else %}{{ d }}th,{% endcase %}
{{ page.date | date: "%Y" }}
by
{% if page.author %}
  {{ page.author }}.
{% else %}
  {{ site.author }}.
{% endif %}

{% include post-tags.html %}

</span>

{% include social-sharing.html %}

{% if site.data.settings.post_navigation.postion contains 'bottom' %}

{% include post-navigation.html %}

{% endif %}

{% include related-posts.html %}

{% if site.data.settings.disqus.comments %}

{% include disqus.html %}

{% endif %} </footer>