26 lines
850 B
Plaintext
26 lines
850 B
Plaintext
---
|
|
layout: layouts/base.njk
|
|
templateClass: tmpl-post
|
|
---
|
|
<h1>{{ title }}</h1>
|
|
|
|
<time datetime="{{ page.date | htmlDateString }}">{{ page.date | readableDate }}</time>
|
|
{%- for tag in tags | filterTagList -%}
|
|
{%- set tagUrl %}/tags/{{ tag | slug }}/{% endset -%}
|
|
<a href="{{ tagUrl | url }}" class="post-tag">{{ tag }}</a>
|
|
{%- endfor %}
|
|
|
|
{{ content | safe }}
|
|
|
|
{%- if collections.posts %}
|
|
{%- set nextPost = collections.posts | getNextCollectionItem(page) %}
|
|
{%- set previousPost = collections.posts | getPreviousCollectionItem(page) %}
|
|
{%- if nextPost or previousPost %}
|
|
<hr>
|
|
<ul>
|
|
{%- if nextPost %}<li>Next: <a href="{{ nextPost.url | url }}">{{ nextPost.data.title }}</a></li>{% endif %}
|
|
{%- if previousPost %}<li>Previous: <a href="{{ previousPost.url | url }}">{{ previousPost.data.title }}</a></li>{% endif %}
|
|
</ul>
|
|
{%- endif %}
|
|
{%- endif %}
|