Destructables/templates/sitemap-projects.html

23 lines
607 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Sitemap - {{ data[1] }} {{ data[0] }} Projects - Destructables</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
{% include "style.html" %}
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/favicon.png') }}">
</head>
<body>
{% include "header.html" %}
<h1>Sitemap/{{ data[1] }} {{ data[0] }} Projects</h1>
<div class="sitemap">
<ul>
{% for article in data[2] %}
<li><a href="{{ article[1] }}">{{ article[0] }}</a></li>
{% endfor %}
</ul>
</div>
{% include "footer.html" %}
</body>
</html>