2023-04-12 01:48:18 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1 class="title">
|
|
|
|
{{ page.title }}
|
|
|
|
</h1>
|
|
|
|
<br />
|
|
|
|
<p class="subtitle"><strong>{{ page.date }}</strong></p>
|
2023-04-18 01:47:17 +00:00
|
|
|
<div style="max-width: 550px; max-height: 75vh; overflow-y: scroll;">{{ page.content | safe }}</div>
|
2023-04-12 01:48:18 +00:00
|
|
|
{% endblock content %}
|