mirror of
https://github.com/tiyn/beaker-blog.git
synced 2025-10-18 05:41:17 +02:00
11 lines
206 B
HTML
11 lines
206 B
HTML
{% extends "template.html" %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="standalone">
|
|
{% autoescape off %}
|
|
{{ content_string }}
|
|
{% endautoescape %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|