layout: default


<div class=“post {{ page.id | replace: '/', '-' }}”>

<header class="post-header">
  <h1 class="post-title">{{ page.title }}</h1>
  {% include post_meta.html post=page %}
</header>

<article class="post-content">
  {{ content }}

  <div style="clear: both;"></div>
</article>

{% unless page.comments == false %}
{% include disqus.html %}
{% endunless %}

<div class="post-nav">
  {% if page.previous %}
    <a href="{{ page.previous.url }}" class="previous button" title="{{ page.previous.title }}">Vorige</a>
  {% else %}
    <span class="previous button disabled">Vorige</span>
  {% endif %}
  {% if page.next %}
    <a href="{{ page.next.url }}" class="next button" title="{{ page.next.title }}">Volgende</a>
  {% else %}
    <span class="next button disabled">Volgende</span>
  {% endif %}
</div>

</div>