-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorvette.html
30 lines (27 loc) · 1.06 KB
/
corvette.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends "base.html" %}
{% block title %}{{ SITENAME }} Autoindex{% endblock %}
{% block head %}
{% endblock %}
{% block content %}
<div class="container-md font-monospace">
<br>
<h2><a href="https://github.com/philipkiely/corvette">Corvette</a> — Autoindex Directory Listing</h2>
<br>
<br>
<ul class="list-inline fs-3 fw-bold">
<a href="{{ root_link }}">{{ root_name }}</a>
<li class="list-inline-item">/</li>
{% for b in breadcrumbs %}
<li class="list-inline-item"><a href="{{ root_link }}{{ b[1] }}">{{ b[0] }}</a></li>
<li class="list-inline-item">/</li>
{% endfor %}
</ul>
{% for l in lines %}
{% if not l.hide %}
<p class="fs-5 text-dark {% if not l.file %}fw-bold{% endif %}"><span class="fs-3"> </span><i
class="bi-{{ l.icon }}"></i><span class="fs-3"> </span><a class="text-reset" href="{{ l.link }}">{{
l.text }}</a></p>
{% endif %}
{% endfor %}
</div>
{% endblock %}