blindforge/templates/repo.html
2026-03-29 13:10:03 +02:00

45 lines
705 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Repo - Blindforge</title>
<style type="text/css">
html, body {
margin: 0;
padding: 0;
}
.tree-dir {
list-style-type: "🗀";
}
.tree-file {
list-style-type: "🗋";
}
.giallo {
tab-size: 4em;
}
.giallo-ln {
user-select: none;
margin-right: 2em;
}
</style>
</head>
<body>
<header>
<h1>Titre</h1>
</header>
<div id="tree">
<ul class="tree">
{% for entry in entries %}
{{ entry.render()? }}
{% endfor %}
</ul>
</div>
<div id="page">
<h2>Fichier</h2>
<span><a>Root</a> / <a>Dossier</a> / Fichier</span>
<div id="content">
{{ content|safe }}
</div>
</div>
</body>
</html>