correction d'une double bordure dans les aggregateurs de page

This commit is contained in:
2026-03-11 01:26:11 +01:00
parent 4a6999ee98
commit 3e9580b3b1
5 changed files with 19 additions and 17 deletions

View File

@@ -1,14 +1,12 @@
{% extends "base.html" %}
{% block content %}
<div class="main-content">
<h1>
{{section.title}}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</div>
<h1>
{{section.title}}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}