根目录
{% if path %}
{% set path_parts = path.split('/') %}
{% set current_path = '' %}
{% for part in path_parts %}
{% set current_path = current_path + '/' + part if current_path else part %}
/
{{ part }}
{% endfor %}
{% endif %}
文件浏览器
-
{% if path %}
- .. (父目录) {% endif %} {% if items %} {% for item in items %}
-
{% if item.is_dir %}
{% else %}
{% if item.is_image %} {% elif item.is_text %} {% else %} {% endif %} {{ item.name }} {% if not item.is_dir %} {{ item.extension }} {% endif %}{% endif %}
{% endfor %}
{% else %}
- 此目录为空 {% endif %}
未选择文件
从左侧文件浏览器中选择一个文件进行编辑或预览