146a5c08f7
This resulted from a lengthy collaboration with @kevinzakka, @jonathanembleyriches, @nimrod-gileadi, @gizemozd, @quagla, and @yuval.
13 lines
527 B
HTML
13 lines
527 B
HTML
<div class="row-section">
|
|
{% if description %}
|
|
<p class="section-description" style="color: var(--text-muted); margin-bottom: 1rem;">{{ description | safe }}</p>
|
|
{% endif %}
|
|
<div class="row-content"
|
|
style="display: flex; flex-direction: row; flex-wrap: wrap; gap: 1rem; justify-content: space-around;">
|
|
{% for child in child_sections %}
|
|
<div class="row-item" style="flex: 1; min-width: 300px;">
|
|
{{ child.content | safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div> |