16 lines
485 B
Twig
16 lines
485 B
Twig
<tr class="border-b">
|
|
<th scope="row" class="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
|
{% if file.type == 'dir' %}
|
|
{{ ux_icon('folder:closed', {height: '32px', width: '32px'}) }}
|
|
{% else %}
|
|
{{ ux_icon('file:default', {height: '32px', width: '32px'}) }}
|
|
{% endif %}
|
|
</th>
|
|
<td class="px-6 py-4">
|
|
{{ file.name }}
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
{{ file.size }}
|
|
</td>
|
|
</tr>
|