mirror of
https://github.com/tiyn/container-critique.git
synced 2025-04-04 09:07:46 +02:00
12 lines
245 B
HTML
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 %}
|