xmitter-11ty/_includes/layouts/post.njk

29 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-01-16 22:08:47 -05:00
---
layout: layouts/base.njk
---
2023-03-02 16:43:18 -05:00
{# Only include the syntax highlighter CSS on blog posts #}
{%- css %}{% include "node_modules/prismjs/themes/prism-okaidia.css" %}{% endcss %}
{%- css %}{% include "public/css/prism-diff.css" %}{%- endcss %}
2018-01-16 22:08:47 -05:00
<h1>{{ title }}</h1>
<ul class="post-metadata">
2023-01-23 12:37:44 -05: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 %}
</ul>
2021-03-17 17:29:07 -04:00
{{ content | safe }}
2021-07-28 09:57:46 -04:00
{%- if collections.posts %}
{%- set previousPost = collections.posts | getPreviousCollectionItem %}
{%- set nextPost = collections.posts | getNextCollectionItem %}
2021-03-17 17:29:07 -04:00
{%- if nextPost or previousPost %}
2023-01-23 12:37:44 -05:00
<ul class="links-nextprev">
2024-04-24 18:26:21 -04:00
{%- if previousPost %}<li class="links-nextprev-prev">← Previous<br> <a href="{{ previousPost.url }}">{{ previousPost.data.title }}</a></li>{% endif %}
{%- if nextPost %}<li class="links-nextprev-next">Next →<br><a href="{{ nextPost.url }}">{{ nextPost.data.title }}</a></li>{% endif %}
2020-07-27 16:19:01 -04:00
</ul>
2021-03-17 17:29:07 -04:00
{%- endif %}
2021-07-28 09:57:46 -04:00
{%- endif %}