layout: default


<article class=“post”>

<h1 class="post-title">{{ page.title }}</h1>
<div class="post-meta">
  <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
    {{ page.date | date_to_string }}
  </time>
  {%- if page.last_modified_at -%}
    ~
    {%- assign mdate = page.last_modified_at | date_to_xmlschema -%}
    <time datetime="{{ mdate }}" itemprop="dateModified">
      {{ mdate | date_to_string }}
    </time>
  {%- endif -%}
  {%- if page.author -%}
    •
    {% for author in page.author %}
      <span itemprop="author" itemscope itemtype="http://schema.org/Person">{{ author }}</span>
      {%- if forloop.last == false %}, {% endif -%}
    {% endfor %}
  {%- endif -%}
</div>

{{ content }}

</article>

{% if jekyll.environment == “production” and site.disqus and page.comments != false %}

{% include disqus.html %}

{% endif %}

<div class=“post-pagination”>

{% if page.previous %}
  <a class="post-pagination-item older" href="{{ page.previous.url | relative_url }}">
    <i class="fas fa-chevron-left"></i> <span class="post-pagination-title">{{ page.previous.title | markdownify | strip_html }}</span>
  </a>
{% else %}
  <span class="post-pagination-item older"></span>
{% endif %}

{% if page.next %}
  <a class="post-pagination-item newer" href="{{ page.next.url | relative_url }}">
    <span class="post-pagination-title">{{ page.next.title | markdownify | strip_html }}</span> <i class="fas fa-chevron-right"></i>
  </a>
{% else %}
  <span class="post-pagination-item newer"></span>
{% endif %}

</div>