Add main class=fp to wishes.html

This commit is contained in:
HackerNCoder 2024-09-17 13:48:15 +02:00
parent 4dfe444730
commit 34810c5ad9

View file

@ -1,6 +1,7 @@
{% extends "layout.html" %} {% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %} {% block title %}{{ this.title }}{% endblock %}
{% block body %} {% block body %}
<main class="fp">
{% if this.body %} {% if this.body %}
<h2 class="page-title">{{ this.title }}</h2> <h2 class="page-title">{{ this.title }}</h2>
{{ this.body }} {{ this.body }}
@ -19,4 +20,5 @@
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
</main>
{% endblock %} {% endblock %}