snipette-crowdfunding-site/src/base.htm.twig
Hippo 5206046c5a Add friendly-looking notif and error pages
Much less scary than all that plaintext, what?
2022-01-06 18:20:50 +05:30

25 lines
1.1 KiB
Twig

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>{% block title %}Snipette Crowdfunding{% endblock %}</title>
<link rel="stylesheet" href="css/style.css"/>
<!-- Fonts: Fanwood Text, Abhaya Libre, Didact Gothic -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@800&family=Didact+Gothic&family=Fanwood+Text:ital@0;1&display=swap" rel="stylesheet">
</head>
<body class="bg-orange-200 font-serif flex h-screen w-screen">
{% block content %}
<div class="max-w-md m-auto grow-0 text-center font-sans p-4 md:p-0">
<h1 class="text-4xl font-heading font-extrabold lowercase mb-4">{% block heading %}It worked!{% endblock %}</h1>
{% block message %}
<p class="text-lg">This page worked, we mean. <a href="/">Return to the home page</a> to continue 🙂</p>
{% endblock %}
</div>
{% endblock %}
</body>
</html>