multiple changes

This commit is contained in:
www
2021-01-11 18:45:03 +00:00
parent 14ca632137
commit 3d3474a2e1
24 changed files with 3517 additions and 83 deletions

View File

@@ -1,8 +1,14 @@
{% extends "layout.html" %}
{% block content %}<br>
<h1>asdf</h1>
{{dir.p}}
<h1>{{dir.p}}</h1>
<ul>
{% for f in dir.dirs %}
<li> .<i class="fileicon-folder-1"></i><a href="{{url_for('internfiles.web', path=path+f)}}">
{{f}}</a></li>
{% endfor %}</ul>
<ul aria-label="You are here:" role="navigation" class="breadcrumbs">
{% for b in dir.bookmarks %}<li>
<a href="{{url_for('internfiles.web', path=b)}}">
{{b or "Home"}}</a></li>
@@ -12,15 +18,10 @@
{{text|safe}}<br><br>
<ul>
{% for f in dir.files %}
<li>
{{f}} <a href="{{url_for('internfiles.web', path=path+f)}}">
{{f}}</a></li>
{% endfor %}</ul>
<ul>
{% for f in dir.dirs %}
<li><a href="{{url_for('internfiles.web', path=path+f)}}">
{{f}}</a></li>
{% endfor %}</ul>
{% endblock %}