Files
Mujoco_WASM/python/mujoco/sysid/report/templates/row.html
T
Kevin Zakka 146a5c08f7 System identification toolbox for MuJoCo.
This resulted from a lengthy collaboration with @kevinzakka, @jonathanembleyriches, @nimrod-gileadi, @gizemozd, @quagla, and @yuval.
2026-02-09 12:12:24 -05:00

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>