blog/_includes/layouts/default.njk

29 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-05-10 21:41:47 -04:00
<!doctype html>
2024-05-23 15:37:43 -04:00
<html lang="{{ it.lang }}">
2022-05-10 21:41:47 -04:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-05-23 15:37:43 -04:00
<title>{{ title or metas.site }}</title>
<meta name="description" content="{{ description or metas.description }}">
<link rel="stylesheet" href="/css/style.css">
<link rel="alternate" href="https://walkah.blog/feed.rss" type="application/rss+xml">
<link rel="alternate" href="https://walkah.blog/feed.json" type="application/json">
2022-05-10 21:41:47 -04:00
</head>
<body class="bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<div class="container max-w-2xl mb-24 mt-8 mx-auto">
<div class="px-5 md:px-8">
2022-11-14 21:05:03 -05:00
<header class="flex flex-row not-prose my-8">
<div rel="author" class="p-author h-card basis-1/2">
2024-05-23 15:37:43 -04:00
<a href="/">
<img class="u-photo w-8 inline-block" src="/images/walkah-avatar.png"> walkah
2022-11-14 21:05:03 -05:00
</a>
</div>
</header>
2022-11-11 23:26:39 -05:00
<main id="main" class="prose lg:prose-lg dark:prose-invert">
{% block content %}
{% endblock content %}
</main>
</div>
</div>
</body>
2022-05-10 21:41:47 -04:00
</html>