denbooru/templates/list.html

14 lines
188 B
HTML
Raw Normal View History

2024-09-15 16:45:26 +00:00
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Drawing list</h1>
<ul>
{% for path in paths -%}
<li>{{ path }}</li>
{% endfor %}
</ul>
</body>
</html>