This commit is contained in:
gauthiier
2025-09-21 06:54:25 +02:00
parent 6851c67498
commit cc1c7ec065
22 changed files with 1587 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
<div id="{{ section_id }}" class="section">
<div class="section_header">
<h2>{{ section_title }}</h2>
</div>
<div class="list">
{% for item in section_items %}
<details>
<summary>{{ item.summary }}</summary>
{{ item.detail }}
</details>
{% endfor %}
</div>
</div>