gil.ink/src/_layouts/entry.njk

42 lines
999 B
Plaintext
Raw Normal View History

2025-05-16 21:16:21 -04:00
---
layout: base.njk
---
2025-05-17 10:17:44 -04:00
<main class="page--entry box pad">
2025-05-16 21:16:21 -04:00
<header>
<h1>{{ title }}</h1>
<p>
{% if author %}
{{ author }} |
2025-05-18 13:17:26 -04:00
{% elif meta.author %}
2025-05-16 21:16:21 -04:00
{{ meta.author }} |
{% endif %}
<time datetime="{{ page.date }}" title="{{ page.date }}">{{ page.date | formatDateRel }}</time>
2025-05-18 13:17:26 -04:00
{% if categories %}
<em>in</em>
{% for cat in categories %}
<span class="category category--{{ cat }}">{{ cat }}</span>
{% endfor %}
{% endif %}
2025-05-16 21:16:21 -04:00
</p>
</header>
{{ content | safe }}
<aside>
{% if lastmod %}
<p>
<strong>Last modified</strong>
2025-05-18 13:17:26 -04:00
<time datetime="{{ lastmod | formatDate('yyyy-MM-dd') }}">{{ lastmod | formatDate("yyyy-MM-dd") }}</time>
2025-05-16 21:16:21 -04:00
</p>
{% endif %}
{% if tags %}
<p>
<strong>Tags</strong>
<ul>
{% for tag in tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
</p>
{% endif %}
</aside>
2025-05-18 13:17:26 -04:00
</main>