summaryrefslogtreecommitdiff
path: root/_site_build/_layouts/post.html
blob: e45ca24f0d213d8cf2437cf3d66e33d0b80b0f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
---
<article>
  <header>
    <h1>{{ page.title }}</h1>
    <time datetime="{{ page.date | date: '%Y-%m-%d' }}" pubdate>{{ page.date | date: '%A' }} {{ page.date | ordinalize }} {{ page.date | date: '%B, %Y' }}</time>
  </header>
  {{ content }}
  <footer>
    <nav>
      <ul>
        {% if page.previous.url %}
        <li class="prev-article"><a href="{{ page.previous.url }}" target="_self" rel="prev bookmark" title="{{ page.previous.title }}">&laquo; {{ page.previous.title }}</a></li>
        {% endif %}
        {% if page.next.url %}
        <li class="next-article"><a href="{{ page.next.url }}" target="_self" rel="next bookmark" title="{{ page.next.title }}">{{ page.next.title }} &raquo;</a></li>
        {% endif %}
      </ul>
    </nav>
  </footer>
</article>