19 lines
429 B
Plaintext
19 lines
429 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
{% include "templates/defaultTags.njk" %}
|
||
|
<link rel="stylesheet" type="text/css" href="/assets/css/sitemap.css">
|
||
|
<title>Site Map</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
All Articles
|
||
|
</header>
|
||
|
<p class="centered">
|
||
|
Here's a list of all articles:
|
||
|
</p>
|
||
|
<div class="sitemap-container">
|
||
|
{{ siteMap("/articles") | safe }}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|