1
0
mirror of https://github.com/tiyn/beaker-blog.git synced 2026-02-22 04:44:48 +01:00
Files
beaker-blog/src/templates/archive.html
2020-05-27 22:00:19 +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 %}