gil.ink/src/_layouts/entry.njk

44 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-05-16 21:16:21 -04:00
---
layout: base.njk
---
<main class="box page page-journal">
<header>
<h1>{{ title }}</h1>
<p>
{% if author %}
{{ author }} |
{% elseif meta.author %}
{{ meta.author }} |
{% endif %}
<time datetime="{{ page.date }}" title="{{ page.date }}">{{ page.date | formatDateRel }}</time>
</p>
</header>
{{ content | safe }}
<aside>
{% if lastmod %}
<p>
<strong>Last modified</strong>
<time datetime="{{ lastmod | formatDate }}">{{ lastmod | formatDate }}</time>
</p>
{% endif %}
{% if tags %}
<p>
<strong>Tags</strong>
<ul>
{% for tag in tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
</p>
{% endif %}
</aside>
</main>
<!-- <footer> <p>
<strong>Created</strong>
<time datetime="{{ page.date | formatDate }}">{{ page.date | formatDate }}</time>
{% if lastmod %}•
<strong>Last modified</strong>
<time datetime="{{ lastmod | formatDate }}">{{ lastmod | formatDate }}</time>
{% endif %}
</p> </footer> -->