2017-07-23 21:22:05 -04:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
---
|
|
|
|
<article class="c-article">
|
2018-05-10 16:18:24 -04:00
|
|
|
<header class="c-article__header">
|
|
|
|
<h1 class="c-article__title">{{ page.title }}</h1>
|
2018-08-26 22:16:26 -04:00
|
|
|
<br>
|
|
|
|
<h3 class="c-article__description">{{ page.description }}</h3>
|
2018-05-10 16:18:24 -04:00
|
|
|
<p class="c-article__time"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time></p>
|
|
|
|
</header>
|
|
|
|
<!-- Post Tags -->
|
|
|
|
<ul class="c-tags">
|
2017-07-23 21:22:05 -04:00
|
|
|
{% for tag in page.tags %}
|
2018-05-10 16:18:24 -04:00
|
|
|
<li class="c-tag">{{ tag }}</li>
|
2017-07-23 21:22:05 -04:00
|
|
|
{% endfor %}
|
2018-05-10 16:18:24 -04:00
|
|
|
</ul>
|
|
|
|
<div class="c-article__main">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
<!-- Previous / Next Buttons -->
|
|
|
|
<div class="pagenav">
|
|
|
|
{% if page.previous.url %}
|
|
|
|
<div class="wrapper" id="left">
|
|
|
|
<small><b>Previous</b> {{page.previous.date | date: "%b %-d, %Y"}}</small>
|
|
|
|
<br>
|
|
|
|
<a class="no-hov" href="{{ page.previous.url | prepend: site.baseurl }}">« {{page.previous.title}}</a>
|
2017-07-23 21:22:05 -04:00
|
|
|
</div>
|
2018-05-10 16:18:24 -04:00
|
|
|
{% endif %}
|
|
|
|
{% if page.next.url %}
|
|
|
|
<div class="wrapper" id="right">
|
|
|
|
<small>{{page.next.date | date: "%b %-d, %Y"}} <b>Next</b></small>
|
|
|
|
<br>
|
|
|
|
<a class="no-hov" href="{{ page.next.url | prepend: site.baseurl }}">{{page.next.title}} »</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<!-- Disqus comments view -->
|
|
|
|
{% if page.comments != false and site.disqus_id %}
|
|
|
|
<div class="post-disqus">
|
|
|
|
<section id="disqus_thread"></section>
|
|
|
|
{% include disqus.html %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2017-07-23 21:22:05 -04:00
|
|
|
</article>
|