Files
maddin 6fbd1bb3c2
CI / checks (push) Has been cancelled
chore: initialize public repository
2026-03-22 12:57:09 +00:00

15 lines
330 B
HTML

{% macro table(headers, class_name='') -%}
<div class="table-wrap {{ class_name }}">
<table class="table">
<thead>
<tr>
{% for header in headers %}<th>{{ header }}</th>{% endfor %}
</tr>
</thead>
<tbody>
{{ caller() }}
</tbody>
</table>
</div>
{%- endmacro %}