mirror of
https://codeberg.org/sofiaritz/website.git
synced 2023-09-06 01:24:41 +00:00
19 lines
361 B
Text
19 lines
361 B
Text
|
---
|
||
|
layout: simple_page.njk
|
||
|
---
|
||
|
|
||
|
<h1>{{ title }}</h1>
|
||
|
{% if date %}
|
||
|
<time datetime="{{ date | htmlDateString }}">{{ date | readableDate }}</time> |
|
||
|
{% endif %}
|
||
|
{% if tags %}
|
||
|
{% for tag in tags %}
|
||
|
<span>{{ tag }} {% if loop.last == false %}·{% endif %}</span>
|
||
|
{% endfor %}
|
||
|
|
|
||
|
{% endif %}
|
||
|
{{ content | timeToRead }}
|
||
|
|
||
|
|
||
|
{{ content | safe }}
|