blog/_includes/layouts/default.njk

29 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-05-10 21:41:47 -04:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title or metadata.title }}</title>
<meta name="description" content="{{ description or metadata.description }}">
2022-12-08 18:07:41 -05:00
<link rel="stylesheet" href="{{ '/css/style.css' | relativePath(page) }}">
<link rel="alternate" href="{{ metadata.feed.path | relativePath(page) }}" type="application/atom+xml" title="{{ metadata.title }}">
<link rel="alternate" href="{{ metadata.jsonfeed.path | relativePath(page) }}" type="application/json" title="{{ metadata.title }}">
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">
2022-12-08 18:07:41 -05:00
<a href="{{ "/" | relativePath(page) }}">
<img class="u-photo w-8 inline-block" src="{{ "/images/walkah-avatar.png" | relativePath(page) }}"> 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>