1
0
Fork 0
website/templates/post.html

13 lines
391 B
HTML
Raw Normal View History

2022-08-31 23:20:59 +02:00
{% extends "base.html" %}
2023-03-25 21:38:16 +01:00
{% block main -%}
<article>
{% if page.title -%}
<h1>{{ page.title }}</h1>
{% endif -%}
{% if page.date -%}
<small>Posted on <time datetime="{{ page.date }}">{{ page.date | date(format="%Y-%m-%d %H:%M") }}</time></small>
{% endif -%}
{{ page.content | safe -}}
</article>
{% endblock main -%}