{% extends "base.html" %} {% block style %} {{ super() }} #dirbrowserContainer { background: #fff; min-width: 35em; max-width: 35em; position: absolute; top: 2em; left: 1em; padding: 10px; border: 2px solid #eee; -webkit-border-radius: 5px; } #dirbrowserTitleText { font-size: 118%; font-weight: bold; } ul { list-style-type: none; margin: 0; padding: 0; } ul > li { background-repeat: no-repeat; background-size: 22px; line-height: 22px; padding-left: 25px; } ul > li { background-image: url('{{ resource_url('img/folder.svg') }}'); } ul.files > li { background-image: url('{{ resource_url('img/file.svg') }}'); } {% endblock %} {% block content %}

Browse directory: {{url}}

{% if parent is not none %} {% endif %}
{% endblock %}