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