Remove class=page div

This commit is contained in:
HackerNCoder 2024-01-03 09:44:32 +01:00
parent 3ff9b48373
commit 660f26443b
2 changed files with 17 additions and 19 deletions

View file

@ -16,11 +16,11 @@ a:hover {
color: #33bbdf; color: #33bbdf;
} }
div.page { main {
padding: 0 20px 0; padding: 0 20px 0;
} }
div.page ul { ul {
padding-left: 3vw; padding-left: 3vw;
} }

View file

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