templates
This commit is contained in:
parent
37eaccd80e
commit
2c1793a128
12 changed files with 496 additions and 26 deletions
62
templates/repo.html
Normal file
62
templates/repo.html
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
<!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">
|
||||
<li class="tree-file"><span class="filename">Fichier</span></li>
|
||||
<li class="tree-file"><span class="filename">Fichier</span></li>
|
||||
<li class="tree-dir">
|
||||
<details>
|
||||
<summary><span class="filename">Dossier</span></summary>
|
||||
<ul class="tree">
|
||||
<li class="tree-file"><span class="filename">Fichier</span></li>
|
||||
<li class="tree-file"><span class="filename">Fichier</span></li>
|
||||
<li class="tree-dir">
|
||||
<details>
|
||||
<summary><span class="filename">Dossier</span></summary>
|
||||
|
||||
</details>
|
||||
</li>
|
||||
<li class="tree-file"><span class="filename">Fichier</span></li>
|
||||
</ul>
|
||||
|
||||
</details>
|
||||
</li>
|
||||
<li class="tree-file"><span class="filename">Fichier</span></li>
|
||||
</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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue