60 lines
1.3 KiB
HTML
60 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
ul, p, h1, h2, h3, h4 {
|
|
margin: 0px;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
margin: 0px;
|
|
}
|
|
|
|
html {
|
|
background-color: #222;
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
font-family: mono;
|
|
margin: auto;
|
|
width: 80vw;
|
|
padding: 40px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 style="margin-bottom: 40px;">Drawing list</h1>
|
|
<ul style="display: flex; flex-direction: column; gap: 20px;">
|
|
{% for file in files -%}
|
|
<li>
|
|
<p>{{ file.path }}<p>
|
|
<ul
|
|
style="
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-top: 5px;
|
|
flex-wrap: wrap;
|
|
"
|
|
>
|
|
{% for tag in file.tags -%}
|
|
<li
|
|
style="
|
|
list-style: none;
|
|
background-color: #555;
|
|
padding: 2px 7px;
|
|
margin: 0px;
|
|
"
|
|
>
|
|
{{ tag }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|