2024-04-13 17:29:25 +08:00
|
|
|
---
|
|
|
|
layout: main/base
|
|
|
|
metadata:
|
|
|
|
type: article
|
|
|
|
eleventyComputed:
|
|
|
|
title: "{{ articleTitle }} | Articles"
|
|
|
|
---
|
|
|
|
|
2024-04-14 18:08:50 +08:00
|
|
|
<header class="main__header">
|
2024-04-13 17:29:25 +08:00
|
|
|
<h1>{{ articleTitle }}</h1>
|
2024-04-15 11:47:06 +08:00
|
|
|
<div class="article__info">
|
2024-04-14 18:08:50 +08:00
|
|
|
<p>Posted on {{ date | niceDate }} by {{ sitemeta.siteAuthor.name }}
|
2024-04-13 17:29:25 +08:00
|
|
|
{% if updated %}
|
2024-04-14 18:08:50 +08:00
|
|
|
• Updated on {{ updated | niceDate }}</p>
|
2024-04-13 17:29:25 +08:00
|
|
|
{% endif %}
|
|
|
|
<p>{{ content | emojiReadTime }}</p>
|
|
|
|
</div>
|
2024-04-14 18:08:50 +08:00
|
|
|
</header>
|
2024-04-13 17:29:25 +08:00
|
|
|
|
2024-04-15 00:13:57 +08:00
|
|
|
<div class="article__wrapper">
|
|
|
|
{% if toc %}
|
|
|
|
{% include "toc.njk" %}
|
|
|
|
{% endif %}
|
2024-04-14 18:08:50 +08:00
|
|
|
|
2024-04-15 02:20:54 +08:00
|
|
|
<article class="article">
|
2024-04-15 00:13:57 +08:00
|
|
|
{{ content | safe }}
|
|
|
|
</article>
|
|
|
|
</div>
|