grimoire/example/entry.templ.html

8 lines
251 B
HTML
Raw Normal View History

2025-01-05 22:13:57 +00:00
{% extends template_dir + "/layout.templ.html" %}
{% block title %}Blog - {{ current.title }}{% endblock %}
{% block content %}
<h1>{{ current.title }}</h1>
<h2>{{ current.date }}</h2>
{{ current.markdown_compiled | safe }}
{% endblock %}