mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 03:17:25 +08:00
13 lines
310 B
Twig
Executable File
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 %}
|