mirror of
https://github.com/sigmasternchen/grimoire
synced 2025-03-15 08:08:55 +00:00
8 lines
No EOL
251 B
HTML
8 lines
No EOL
251 B
HTML
{% 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 %} |