oliverdavies.uk/source/_layouts/default.html.twig

26 lines
492 B
Twig
Raw Normal View History

2024-01-03 20:00:00 +00:00
<link rel="stylesheet" href="/build/tailwind.css" />
2024-01-03 20:00:00 +00:00
{% include 'banner.html.twig' %}
2024-01-03 20:00:00 +00:00
<div class="px-4 md:px-6 max-w-4xl mx-auto">
2024-01-03 20:00:00 +00:00
<header>
{% include 'logo.html.twig' %}
</header>
2024-01-03 20:00:00 +00:00
<div class="space-y-10">
<main>
<h1>{{ page.title }}</h1>
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
{% block content %}{% endblock %}
</main>
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
{% block content_bottom %}
{% include 'about-me.html.twig' %}
{% endblock %}
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
<footer>
{% include 'main-menu.html.twig' %}
</footer>
<div>
2024-01-03 20:00:00 +00:00
</div>