TDoG-Skin/resources/views/shared/grid.twig
2024-08-17 19:13:54 +08:00

13 lines
310 B
Twig
Executable File

{% for row in grid.widgets %}
<div class="row">
{% set layout = grid.layout[loop.index0] %}
{% for col in row %}
<div class="col-{{ layout[loop.index0] }}">
{% for widget in col %}
{{ include(widget) }}
{% endfor %}
</div>
{% endfor %}
</div>
{% endfor %}