{% extends "base.html" %} {% block contenido %}

Física USC

Inicio {% for miga in migas %} {{ miga.nombre }} {% endfor %}
{% if carpetas %}

Carpetas

{% for carpeta in carpetas %} 📁 {{ carpeta }} {% endfor %}
{% endif %} {% if archivos %}

Archivos

{% for archivo in archivos %} {% set ext = archivo.split('.')[-1].lower() %} {% if ext == 'pdf' %} {% set icono = '📕' %} {% elif ext == 'py' %} {% set icono = '🐍' %} {% elif ext == 'txt' %} {% set icono = '📄' %} {% else %} {% set icono = '📎' %} {% endif %} {{ icono }} {{ archivo }} {% endfor %}
{% endif %} {% if not carpetas and not archivos %}

Esta carpeta está vacía.

{% endif %} {% endblock %}