{% extends "base.html" %}
{% set active_tab = 'files' %}
{% block title %}{{ filename }} - Second Brain{% endblock %}
{% block content %}
{% if filepath and '/' in filepath %}
🏠 Home
{% for part in filepath.split('/') %}
{% if not loop.last %}
›
{% set cumulative = (cumulative | default('')) ~ '/' ~ part %}
{{ part }}
{% else %}
›{{ part }}
{% endif %}
{% endfor %}
{% endif %}
{% if lang %}
{{ lang | upper }}
{% endif %}
{{ filename }}
{{ size }}{{ mtime }}
{% set dir_path = filepath.rsplit('/', 1)[0] if '/' in filepath else '' %}