mirror of
https://github.com/sigmasternchen/grimoire
synced 2025-03-15 08:08:55 +00:00
12 lines
No EOL
365 B
HTML
12 lines
No EOL
365 B
HTML
{% extends template_dir + "/layout.templ.html" %}
|
|
{% block title %}Homepage{% endblock %}
|
|
{% block content %}
|
|
{{ current.markdown_compiled | safe }}
|
|
|
|
<h2>My latest blog articles:</h2>
|
|
<ul>
|
|
{% for entry in tags["blog"] %}
|
|
<li><a href="{{ entry.output }}">{{ entry.title }}</a> ({{ entry.date }})</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %} |