Formatting overhaul for pages

This commit is contained in:
Jonas Tobias Hopusch 2021-06-14 12:08:22 +02:00
parent b5f8acc2e9
commit e5ec87ffa5
Failed to generate hash of commit
1 changed files with 7 additions and 5 deletions

View File

@ -1,7 +1,9 @@
{% extends "base.html" %} {% block content %}
<h1 class="title">{{ page.title }}</h1>
<article>
<p class="subtitle"><strong>Published on: {{ page.date }}</strong></p>
{{ page.content | safe }}
</article>
<h3>{{ page.title }}</h3>
<article>
<p>Published on: {{ page.date }}</p>
<div>
{{ page.content | safe }}
</div>
</article>
{% endblock content %}