This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
website/_includes/post.njk
Sofía Aritz ba9b759e53 Implement weblog
Missing RSS, comments and tags.
2023-03-12 13:57:29 +01:00

19 lines
361 B
Plaintext

---
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 }}