file-explorer/templates/_partials/_table.html.twig

13 lines
318 B
Twig
Raw Normal View History

2024-12-04 19:39:37 +01:00
<table class="table table-striped table-bordered w-75 mt-5">
<thead>
<tr>
<td>Expand</td>
<th>Name</th>
<th>Size</th>
</thead>
<tbody>
{% for dirContent in content %}
{% include '_partials/_row.html.twig' with {file: dirContent} %}
{% endfor %}
</tbody>
</table>