8 lines
388 B
HTML
8 lines
388 B
HTML
|
|
<div id="flexbox" style="display: flex; flex-wrap: ${flex_wrap}; justify-content: ${justify_content}; flex-direction: ${flex_direction}; align-content: ${align_content}; align-items: ${align_items}; gap: ${gap}; height: 100%;">
|
||
|
|
{% for obj in objects %}
|
||
|
|
<div id="flex-item-{{ loop.index0 }}" style="display: contents;">
|
||
|
|
${objects[{{ loop.index0 }}]}
|
||
|
|
</div>
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|