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