lewisdale.dev/src/_includes/base.njk
2023-02-06 10:22:59 +00:00

27 lines
721 B
Plaintext

<!doctype html>
<html lang={{data.page.lang}}>
<head>
<title>{{ title }} | {{ metadata.site.name }}</title>
<link rel="stylesheet" type="text/css" href="/assets/css/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header class="wrapper-lg row space-between">
<a href="/">L.D</a>
<nav>
<ul class="row">
<li><a href="/">Home</a></li>
<li><a href="/now">Now</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="/about">About me</a></li>
</ul>
</nav>
</header>
{{ content | safe }}
<footer>
<div class="wrapper-lg">Copyright &copy; {{ today.year }} {{ metadata.author.name }}</div>
</footer>
</body>
</html>