2021-12-09 05:47:48 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2023-03-19 05:51:32 +03:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
{{ styles }}
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<meta name="title" content="{{ title }}" />
|
|
|
|
<meta name="description" content="{{ description }}" />
|
|
|
|
<meta name="keywords" content="{{ keywords }}" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-03-26 17:33:50 +03:00
|
|
|
<nav>
|
2023-03-30 18:28:08 +03:00
|
|
|
<a id="brand" href="/">Home 🏠</a>
|
2023-03-27 01:48:09 +03:00
|
|
|
<a href="/TestPage.html">Test Page 🧪</a>
|
2023-03-26 17:33:50 +03:00
|
|
|
<a href="https://zs.mills.io/">Demo 🥳</a>
|
|
|
|
<a href="https://git.mills.io/prologic/zs">Source 💾</a>
|
|
|
|
</nav>
|
2023-03-30 18:28:08 +03:00
|
|
|
<header>
|
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
</header>
|
|
|
|
<aside>{{ onthispage }}</aside>
|
|
|
|
<article>{{ content }}</article>
|
2023-04-01 04:37:01 +03:00
|
|
|
{{ editthispage }}
|
2023-03-19 05:51:32 +03:00
|
|
|
<footer>
|
2023-03-26 17:33:50 +03:00
|
|
|
Copyright © James Mills ·
|
|
|
|
Last modified <time datetime="{{ date +%Y-%m-%dT%H:%M:%SZ%:z }}">{{ date }}</time> ·
|
|
|
|
Built with <a href="https://git.mills.io/prologic/zs">zs</a>
|
2023-03-19 05:51:32 +03:00
|
|
|
</footer>
|
2023-04-01 04:54:41 +03:00
|
|
|
{{ scripts }}
|
|
|
|
<script>
|
|
|
|
hljs.highlightAll();
|
|
|
|
</script>
|
2023-03-19 05:51:32 +03:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|