30 lines
670 B
Plaintext
Raw Normal View History

2024-04-13 17:29:25 +08:00
---
layout: main/base
metadata:
type: article
---
<header class="main__header">
2024-04-13 17:29:25 +08:00
<h1>{{ articleTitle }}</h1>
<div class="article__info">
<p>Posted on {{ date | niceDate }} by {{ sitemeta.siteAuthor.name }}
2024-04-13 17:29:25 +08:00
{% if updated %}
• Updated on {{ updated | niceDate }}</p>
2024-04-13 17:29:25 +08:00
{% endif %}
<p>{{ content | emojiReadTime }}</p>
</div>
</header>
2024-04-13 17:29:25 +08:00
<div class="content__wrapper">
{% if toc %}
{% include "toc.njk" %}
{% endif %}
2024-04-15 02:20:54 +08:00
<article class="article">
{{ content | safe }}
</article>
2024-04-16 01:39:56 +08:00
{% if tags.includes("blog pages") %}
{% include "main/blognav.njk" %}
{% endif %}
</div>