3ec09f7296
PiperOrigin-RevId: 868229512 Change-Id: I790bc08fc8b0745583a2f92d9ee2c5a19ba558ea
14 lines
500 B
HTML
14 lines
500 B
HTML
<div class="group-section">
|
|
{% for child in child_sections %}
|
|
<details class="group-item" open
|
|
style="margin-bottom: 1rem; border: 1px solid var(--border-color); border-radius: 4px; padding: 1rem;">
|
|
<summary style="font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; border-bottom: none;">
|
|
{{ child.title }}
|
|
</summary>
|
|
<div class="group-content">
|
|
{{ child.content | safe }}
|
|
</div>
|
|
</details>
|
|
{% endfor %}
|
|
</div>
|