layout: content


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

<header class="post-header">
  <h1 class="post-title p-name" itemprop="name headline">
    {%- if page.titles[site.lang] -%}
      {{ page.titles[site.lang] }}
      {%- else -%}
      {{ page.title }}
    {%- endif -%}
  </h1>
  <span class="text-muted">
    <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
      {%- assign date_format = site.dateFormats[site.lang] | default: "%b %-d, %Y" -%}
      {{ page.date | date: date_format }}
    </time>
    {%- if page.author -%}
      <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card" itemprop="name">
        {%- include username.html user = page.author prepend = " | "-%}
      </span></span>
    {%- endif -%}
  </span>
  <ul class="list-inline d-inline mt-md-1">
      {%- include page-tags.html page = page -%}
    </ul>
</header>
{%- if page.thumbnail -%}
  <img src="{{ page.thumbnail }}" class="mb-3 mw-100">
{%- endif -%}
{%- include toc.html -%}
<div class="post-content e-content" itemprop="articleBody">
  {{ content }}
</div>

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

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

</article>