19 lines
No EOL
292 B
HTML
19 lines
No EOL
292 B
HTML
{% extends "base_with_header.html" %}
|
|
|
|
{% block main_container %}
|
|
|
|
<div class="content" id="message">
|
|
{% if as_code %}
|
|
<pre><code>
|
|
{% endif %}
|
|
|
|
{{ message }}
|
|
|
|
{% if as_code %}
|
|
</code></pre>
|
|
{% endif %}
|
|
|
|
<a href="/">Go to home</a>
|
|
</div>
|
|
|
|
{% endblock %} |