cracker/_layouts/post.html

20 lines
419 B
HTML
Raw Normal View History

2018-01-27 14:17:03 +00:00
---
layout: default
---
<small>{{ page.date | date: "%-d %B %Y" }}</small>
<h1>{{ page.title }}</h1>
<p class="view">by {{ page.author | default: site.author }}</p>
{{content}}
2020-03-18 18:41:50 +00:00
<hr />
<section>
{% if page.previous %}
2020-04-01 17:31:18 +00:00
<a style="float:left" href="{{ page.previous.url }}">?? Previous Post</a>
2020-03-18 18:41:50 +00:00
{% endif %}
2018-01-27 14:17:03 +00:00
2020-03-18 18:41:50 +00:00
{% if page.next %}
2020-04-01 17:31:18 +00:00
<a style="float:right" href="{{ page.next.url }}">Next Post ??</a>
2018-01-27 14:17:03 +00:00
{% endif %}
2020-03-18 18:41:50 +00:00
</section>