blog/src/main/_includes/default.njk

47 lines
1.8 KiB
Plaintext
Raw Normal View History

2019-06-28 21:59:36 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="{{ site.author }}" />
<meta name="application-name" content="{{ site.title }}" />
<meta name="description" content="{{ site.description }}" />
<meta name="theme-color" content="#0033cc" />
<meta name="fwd:nav:target" content="#nav" />
<meta name="fwd:footer:target" content="#footer" />
<meta name="fwd:footer:vcs-url" content="https://git.fwdekker.com/FWDekker/blog/" />
<meta name="fwd:footer:version" content="v%%VERSION_NUMBER%%" />
2019-06-28 21:59:36 +02:00
<title>{% if page.title %}{{ page.title }}{% else %}Blog{% endif %} | FWDekker</title>
<link rel="stylesheet" href="https://static.fwdekker.com/fonts/roboto/roboto.css" />
<link rel="stylesheet" href="https://static.fwdekker.com/lib/template/2.x.x/template.css" />
2021-04-24 22:07:17 +02:00
<link rel="stylesheet" href="{{ '/main.css?v=%%VERSION_NUMBER%%' | url }}" />
<script async src="https://stats.fwdekker.com/count.js"
data-goatcounter="https://stats.fwdekker.com/count"></script>
2019-06-28 21:59:36 +02:00
</head>
<body>
2020-05-06 19:31:25 +02:00
<noscript>
<img src="https://stats.fwdekker.com/count?p=/blog{{ page.url }}" alt="Counting pixel" />
2021-04-24 22:07:17 +02:00
<p>
2021-04-28 13:40:01 +02:00
This website does not function fully if JavaScript is disabled.
2020-05-06 19:31:25 +02:00
Please check the <a href="https://www.enable-javascript.com/">
instructions on how to enable JavaScript in your web browser</a>.
2021-04-18 17:45:52 +02:00
</p>
2020-05-06 19:31:25 +02:00
</noscript>
2021-04-28 13:40:01 +02:00
<main> <!-- No need to hide if JS disabled -->
2020-05-06 19:31:25 +02:00
<div id="nav"></div>
<div id="contents">
<section class="container">
{{ content | safe }}
</section>
</div>
<div id="footer"></div>
2020-05-06 18:21:28 +02:00
</main>
2020-05-06 19:31:25 +02:00
<script src="https://static.fwdekker.com/lib/template/2.x.x/template.js"></script>
2019-06-28 21:59:36 +02:00
</body>
</html>