layout: default


<article class=“post h-entry” itemscope itemtype=“schema.org/BlogPosting”>

<header class="post-header">

  <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>

  <p class="post-meta">
    {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
    <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
    {%-  if page.time -%} 
    {{ page.time | date: "%H:%M %Z" }} {{ page.date | date: date_format }}
    {%- else -%}
      {{ page.date | date: date_format }}
    {%- endif -%}
    </time>
    {%- if page.last_modified_at -%}
      {%- assign mdate = page.last_modified_at | date_to_xmlschema -%}
      <time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">
        ~ {{ mdate | date: date_format }}
      </time>
    {%- endif -%}
  </p>
</header>

<div class="post-content e-content" itemprop="articleBody">
  {{ content }}
</div>

<div class="pagination">

  {% if page.previous.url %}
    <a href="{{ page.previous.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}" style="float: left;"><i class="fas fa-arrow-left"></i> Previous Post</a>
  {% endif %}

  {% if page.next.url %}
    <a href="{{ page.next.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}" style="float: right;">Next Post <i class="fas fa-arrow-right"></i></a>
  {% endif %}

</div>

{%- if site.disqus.shortname -%}
  {%- include disqus_comments.html -%}
{%- endif -%}

<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>

</article>