14 lines
284 B
HTML
Raw Normal View History

2025-09-21 06:54:25 +02:00
<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>