16 lines
No EOL
318 B
HTML
16 lines
No EOL
318 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block styles %}
|
|
pre {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
overflow: scroll;
|
|
font-family: Courier;
|
|
line-height: 1.1;
|
|
}
|
|
{% endblock styles %}
|
|
|
|
{% block content %}
|
|
<pre><code>{{ content|safe }}</code></pre>
|
|
{% endblock content %} |