blog/src/main/_includes/default.njk

54 lines
1.6 KiB
Plaintext

<!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>
<link rel="shortcut icon" type="image/png" href="https://fwdekker.com/favicon.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
crossorigin="anonymous" />
<style>
p {
text-align: justify !important;
text-justify: inter-word !important;
}
ol {
list-style: decimal outside !important;
}
</style>
</head>
<body>
<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>
<!-- Contents -->
<section class="container">
{{ content | safe }}
</section>
</div>
<div id="footer"></div>
</main>
<!-- Scripts -->
<script src="{{ '/bundle.js' | url }}"></script>
</body>
</html>