{% extends "_base.html" %}
{% block title %}{{ title }}{% endblock title %}
{% block content %}
{{ title }}
{% set last_category = "___INIT___" %}
{% for file in files %}
{% set current_cat = file.category | default(value="Uncategorized") %}
{# If file.category is None, we treat it as special top-level items #}
{% if not file.category %}
{# Just print the item, assuming sorted at top #}