2018-01-16 21:08:47 -06:00
|
|
|
---
|
|
|
|
layout: layouts/base.njk
|
|
|
|
---
|
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
|
2022-08-15 14:53:45 -05:00
|
|
|
<ul class="post-metadata">
|
2023-01-23 11:37:44 -06:00
|
|
|
<li><time datetime="{{ page.date | htmlDateString }}">{{ page.date | readableDate }}</time></li>
|
|
|
|
{%- for tag in tags | filterTagList %}
|
|
|
|
{%- set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
|
|
|
|
<li><a href="{{ tagUrl }}" class="post-tag">{{ tag }}</a>{%- if not loop.last %}, {% endif %}</li>
|
|
|
|
{%- endfor %}
|
2022-08-15 14:53:45 -05:00
|
|
|
</ul>
|
2021-03-17 16:29:07 -05:00
|
|
|
|
2018-08-01 20:39:57 -05:00
|
|
|
{{ content | safe }}
|
2018-01-25 23:36:31 -06:00
|
|
|
|
2021-07-28 08:57:46 -05:00
|
|
|
{%- if collections.posts %}
|
2022-07-27 17:00:44 -05:00
|
|
|
{%- set previousPost = collections.posts | getPreviousCollectionItem %}
|
|
|
|
{%- set nextPost = collections.posts | getNextCollectionItem %}
|
2021-03-17 16:29:07 -05:00
|
|
|
{%- if nextPost or previousPost %}
|
2023-01-23 11:37:44 -06:00
|
|
|
<ul class="links-nextprev">
|
|
|
|
{%- if previousPost %}<li>Previous: <a href="{{ previousPost.url }}">{{ previousPost.data.title }}</a></li>{% endif %}
|
|
|
|
{%- if nextPost %}<li>Next: <a href="{{ nextPost.url }}">{{ nextPost.data.title }}</a></li>{% endif %}
|
2020-07-27 15:19:01 -05:00
|
|
|
</ul>
|
2021-03-17 16:29:07 -05:00
|
|
|
{%- endif %}
|
2021-07-28 08:57:46 -05:00
|
|
|
{%- endif %}
|