mirror of
https://github.com/tiyn/container-critique.git
synced 2025-04-02 16:17:49 +02:00
11 lines
222 B
HTML
11 lines
222 B
HTML
{% extends 'template.html' %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="standalone">
|
|
{% autoescape off %}
|
|
{{ content_string }}
|
|
{% endautoescape %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|