2023-08-02 14:28:26 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2021-08-10 20:51:11 +02:00
|
|
|
<head>
|
|
|
|
{% include "templates/defaultTags.njk" %}
|
2023-08-02 14:28:26 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/sitemap.css">
|
2021-08-10 20:51:11 +02:00
|
|
|
<title>Site Map</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-08-13 17:16:25 +02:00
|
|
|
<div id="header">
|
2021-08-10 20:51:11 +02:00
|
|
|
All Articles
|
2022-08-13 17:16:25 +02:00
|
|
|
</div>
|
2021-08-10 20:51:11 +02:00
|
|
|
<p class="centered">
|
|
|
|
Here's a list of all articles:
|
|
|
|
</p>
|
|
|
|
<div class="sitemap-container">
|
|
|
|
{{ siteMap("/articles") | safe }}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|