summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: bef4515a58a386fa2ceb49d50ef24af2f22088b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: 1column
---
<article>
  <header>
    <div class="page-header">
      <h1>{{ page.title }}</h1> 
      <h5>
        Posted on {{ page.date | date:"%B %d, %Y" }}
        {% for category in page.categories %} 
        <a href='/topics/{{ category }}/'><span class="label">{{ category }}</span></a>
        {% endfor %} 
      </h5>
    </div>
  </header>
  {{ content }}
</article>
<ul class="pager">
  <li class="previous">
  {% if page.next %}
    <a href="{{page.next.url}}" title="{{page.next.title}}">&larr; Newer</a>
  {% endif %} 
  </li>
  <li class="next">
  {% if page.previous %} 
    <a href="{{page.previous.url}}" title="{{page.previous.title}}">Older &rarr;</a> 
  {% endif %} 
  </li>
</ul>