2018-01-16 22:08:47 -05:00
|
|
|
---
|
|
|
|
layout: layouts/base.njk
|
|
|
|
templateClass: tmpl-post
|
|
|
|
---
|
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
|
2018-08-01 21:39:57 -04:00
|
|
|
{{ content | safe }}
|
2018-01-26 00:36:31 -05:00
|
|
|
|
2020-07-27 16:19:01 -04:00
|
|
|
<hr>
|
|
|
|
<ul>
|
|
|
|
{%- set nextPost = collections.posts | getNextCollectionItem(page) %}
|
|
|
|
{%- if nextPost %}<li>Next: <a href="{{ nextPost.url | url }}">{{ nextPost.data.title }}</a></li>{% endif %}
|
|
|
|
{%- set previousPost = collections.posts | getPreviousCollectionItem(page) %}
|
|
|
|
{%- if previousPost %}<li>Previous: <a href="{{ previousPost.url | url }}">{{ previousPost.data.title }}</a></li>{% endif %}
|
|
|
|
</ul>
|