This commit is contained in:
jane 2023-04-11 21:48:18 -04:00
commit 220d96a287
16 changed files with 260 additions and 0 deletions

10
templates/blog-page.html Normal file
View file

@ -0,0 +1,10 @@
{% 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 %}