layout: default


<div class=“post”>

<h1 class="post-title">{{ page.title }}</h1>
<div class="post-line"></div>

{{ content }}

</div>

{% if page.commentable %}

{% if site.comments_engine == 'disqus' %}
  {% include disqus_comments.html %}
{% elsif site.comments_engine == 'gitalk' %}
  {% include gitalk_comments.html %}
{% else %}
{% endif %}

{% endif %}

<div class=“pagination”>

{% if page.next.url %}
  <a href="{{ page.next.url | prepend: site.baseurl }}" class="left arrow">&#8592;</a>
{% endif %}
{% if page.previous.url %}
  <a href="{{ page.previous.url | prepend: site.baseurl }}" class="right arrow">&#8594;</a>
{% endif %}

<a href="#" class="top">Top</a>

</div>