10 lines
278 B
HTML
10 lines
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: 400px; max-height: 75vh; overflow-y: scroll;">{{ page.content | safe }}</div>
|
||
|
{% endblock content %}
|