1
0
mirror of https://github.com/tiyn/beaker-blog.git synced 2025-10-15 04:11:17 +02:00
Files
beaker-blog/src/templates/archive.html
2022-07-29 17:07:28 +02:00

12 lines
245 B
HTML

{% extends "template.html" %}
{% block content %}
<div class="container">
<div class="blogarchive">
<h1>Archive</h1><br>
{% autoescape off %}
{{ content_string }}
{% endautoescape %}
</div>
</div>
{% endblock %}