layout: default


<div class=“container”>

<article itemscope itemtype="http://schema.org/BlogPosting">
  <header>
    <h1 itemprop="name headline">{{ page.title | escape }}</h1>
    <p class="text-muted">
      {%- if page.author -%}
      <span itemprop="author" itemscope itemtype="http://schema.org/Person">
        <span class="font-weight-bold mr-3" itemprop="name">By {{ page.author }}</span>
      </span>
      {%- endif -%}
      <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
        {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} {{ page.date | date: date_format }}
      </time>
    </p>
  </header>
  <div itemprop="articleBody">
    {{ content }}
  </div>
  <a href="{{ page.url | relative_url }}" hidden></a>
</article>

</div>