Downloads
root
{% for part in current_path.split('/') if part %}
/
{{ part }}
{% endfor %}
{% for e in entries %}
{% if e.is_dir %}
📁
{{ e.name }}/
{% else %}
📄
{{ e.name }}
{{ e.size }}
⬇️
{% endif %}
{% endfor %}