10 lines
No EOL
278 B
HTML
10 lines
No EOL
278 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1 class="title">
|
|
{{ page.title }}
|
|
</h1>
|
|
<br />
|
|
<p class="subtitle"><strong>{{ page.date }}</strong></p>
|
|
<div style="max-width: 550px; max-height: 75vh; overflow-y: scroll;">{{ page.content | safe }}</div>
|
|
{% endblock content %} |