layout: default
<article>
<div class="row"> <div class="twelve columns"> <h1 class="blogtitle">{{ page.title }}</h1> <span class="blogdate"> <time> {{ page.date | date: '%A, %B %d, %Y' }}</time> {% if site.reading-time %} - {% include reading-time.html %}{% endif %} </span> </div> </div> <div class="row"> <div class="twelve columns blogcontent"> {{ content }} </div> </div> <div class="row"> <div class="twelve columns post-navigation"> {% if page.next.url %} <a href="{{ page.next.url | prepend: site.baseurl | prepend: site.url }}" title="NEXT: {{ page.next.title }}">⇐</a> <span>·</span> {% endif %} <a href="{{ "/blog" | prepend: site.baseurl | prepend: site.url }}" title="Back to Index">Index</a> {% if page.previous.url%} <span>·</span> <a href="{{ page.previous.url | prepend: site.baseurl | prepend: site.url }}" title="PREV: {{ page.previous.title }}">⇒</a> {% endif %} </div> </div>
</article>