Files
intern2020/templates/internfiles.html
2021-01-11 18:45:03 +00:00

27 lines
602 B
HTML

{% extends "layout.html" %}
{% block content %}<br>
<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>
{% endfor %}
</ul>
<h2>Text:</h2>
{{text|safe}}<br><br>
<ul>
{% for f in dir.files %}
<li><a href="{{url_for('internfiles.web', path=path+f)}}">
{{f}}</a></li>
{% endfor %}</ul>
{% endblock %}