55 lines
1.5 KiB
Text
55 lines
1.5 KiB
Text
<!doctype html>
|
|
<html lang="en" class="bg-slate-700">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% metagen
|
|
title=title,
|
|
desc=description,
|
|
url="https://gaiety.life/",
|
|
img="https://gaiety.life" + coverImage,
|
|
img_alt="",
|
|
twitter_card_type="summary_large_image",
|
|
twitter_handle="FaetaleTTRPG",
|
|
name="Ava Gaiety W.",
|
|
generator="eleventy",
|
|
comments=false
|
|
%}
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="/main.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="relative bg-slate-700 pt-16 pb-20 px-4 sm:px-6 lg:pt-24 lg:pb-28 lg:px-8">
|
|
<div class="absolute inset-0">
|
|
<div class="bg-slate-900 h-1/5 sm:h-2/5"></div>
|
|
</div>
|
|
<div class="relative max-w-7xl mx-auto">
|
|
{% block header %}
|
|
<div class="prose lg:prose-xl prose-invert m-auto text-center">
|
|
{{ content | safe }}
|
|
</div>
|
|
{% endblock %}
|
|
{% block main %}
|
|
Main
|
|
{% endblock %}
|
|
</main>
|
|
{% block footer %}
|
|
{% endblock %}
|
|
|
|
<footer class="mt-16 flex flex-col sm:flex-row gap-8 sm:justify-between text-slate-300">
|
|
<div>
|
|
Site built in <a href="https://www.11ty.dev/" class="underline">11ty</a> with <a
|
|
href="https://tailwindui.com/" class="underline">Tailwind UI</a>, <a
|
|
href="https://gitlab.com/gaiety/gaiety-life" class="underline">fork it here</a>.
|
|
</div>
|
|
<div>
|
|
<a href="/feed.xml" class="underline">Subscribe to RSS</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|