blog/src/main/_includes/default.njk

54 lines
1.6 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" />
<title>{% if page.title %}{{ page.title }}{% else %}Blog{% endif %} | FWDekker</title>
2020-05-06 19:31:25 +02:00
<link rel="shortcut icon" type="image/png" href="https://fwdekker.com/favicon.png" />
2019-06-28 21:59:36 +02:00
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
crossorigin="anonymous" />
<style>
p {
2020-05-06 19:31:25 +02:00
text-align: justify !important;
text-justify: inter-word !important;
2019-06-28 21:59:36 +02:00
}
2020-05-06 19:31:25 +02:00
2020-05-06 18:21:28 +02:00
ol {
2020-05-06 19:31:25 +02:00
list-style: decimal outside !important;
2020-05-06 18:21:28 +02:00
}
2019-06-28 21:59:36 +02:00
</style>
</head>
<body>
2020-05-06 19:31:25 +02:00
<noscript>
<span style="color: red; font-weight: bold;">
This website does not function if JavaScript is disabled.
Please check the <a href="https://www.enable-javascript.com/">
instructions on how to enable JavaScript in your web browser</a>.
</span>
</noscript>
<main style="display: none;">
<div id="nav"></div>
<div id="contents">
<div id="header"></div>
2020-05-06 18:21:28 +02:00
2019-06-28 21:59:36 +02:00
2020-05-06 19:31:25 +02:00
<!-- 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
<!-- Scripts -->
<script src="{{ '/bundle.js' | url }}"></script>
2019-06-28 21:59:36 +02:00
</body>
</html>