8 lines
308 B
HTML
8 lines
308 B
HTML
<table style="width: 100%; border: none; border-collapse: separate; border-spacing: {{ gap }}px 0;">
|
|
<tr>
|
|
{% for child in children %}
|
|
<td style="{% if child.width %}width: {{ child.width }};{% endif %} vertical-align: top; border: none; padding: 0;">{{ child.content|safe }}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
</table>
|