layout: default


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

<header class="post-header">
  <h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
  <p class="post-meta">
    <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
      {% include date.html date=page.date %}
    </time>
    {% include author.html author=page.author %}
  </p>
</header>

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

</article>

<!– prev/next links –> <div class=“pagination”>

{% for post in site.posts %}
  {% if post.lang == page.lang %}
    {% if prev %}
      <a href="{{ post.url }}" class="previous">&laquo; {% include localized_string.html string="Previous" %}</a>
    {% endif %}
    {% assign prev = false %}
    {% if post.id == page.id %}
      {% assign prev = true %}
    {% endif %}
  {% endif %}
{% endfor %}

{% for post in site.posts reversed %}
  {% if post.lang == page.lang %}
    {% if next %}
      <a href="{{ post.url }}" class="next">{% include localized_string.html string="Next" %} &raquo;</a>
      {% break %}
    {% endif %}
    {% assign next = false %}
    {% if post.id == page.id %}
      {% assign next = true %}
    {% endif %}
  {% endif %}
{% endfor %}

</div>

{% if site.disqus.shortname %}

{% include disqus_comments.html %}

{% endif %}