qwik-site/content/pages/articles.njk

19 lines
679 B
Plaintext
Raw Normal View History

2022-08-13 17:16:25 +02:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" xml:lang="en">
2021-08-10 20:51:11 +02:00
<head>
{% include "templates/defaultTags.njk" %}
2022-08-13 17:16:25 +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>