mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
12 lines
335 B
HTML
12 lines
335 B
HTML
<article>
|
|
<header>
|
|
{% if post.isLink %}
|
|
<h2>→ <a href="{{ post.link }}">{{ post.title }}</a></h2>
|
|
{% else %}
|
|
<h2><a href="{{ post.path }}">{{ post.title }}</a></h2>
|
|
{% endif %}
|
|
<time>{{ post.formattedDate }}</time>
|
|
<a class="permalink" href="{{ post.path }}">∞</a>
|
|
</header>
|
|
{{ post.body }}
|
|
</article>
|