26 lines
889 B
HTML
26 lines
889 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ page.title }}</title>
|
|
<link href="/assets/css/index.css" rel="stylesheet">
|
|
</head>
|
|
<body class="min-h-screen h-full flex flex-col">
|
|
{% include header.html %}
|
|
|
|
<div class="flex-grow">
|
|
{{ content }}
|
|
</div>
|
|
|
|
<footer class="h-8 w-full flex flex-row justify-center">
|
|
<span class="text-sm text-center">
|
|
Made with <3 by
|
|
<a class="text-sky-400" href="https://polynom.me" target="_blank" rel="noopener noreferrer">PapaTutuWawa</a>
|
|
using <a class="text-sky-400" href="https://tailwindcss.com/" target="_blank" rel="noopener noreferrer">TailwindCSS</a>
|
|
and <a class="text-sky-400" href="https://jekyllrb.com/" target="_blank" rel="noopener noreferrer">Jekyll</a>
|
|
</span>
|
|
</footer>
|
|
</body>
|
|
</html>
|