2024-01-03 20:00:00 +00:00
{% extends 'base' %}
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
{% block body %}
<div class="min-h-screen font-sans text-base font-light md:text-xl dark:text-white text-grey-900 selection:bg-blue-primary selection:text-white dark:bg-grey-900 dark:selection:bg-blue-primary dark:selection:text-white">
{% include 'banner.html.twig' %}
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
<div class="py-4 px-4 mx-auto max-w-xl">
<header class="flex flex-col justify-between items-center md:flex-row">
{% include 'logo.html.twig' %}
</header>
</div>
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
<div class="py-10 px-6 mx-auto max-w-xl md:py-10">
<div class="space-y-10">
{% block content_top %} {% endblock %}
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
<main>
2024-08-20 00:04:02 +00:00
{% if page .url matches "#^/atdc/#" %}
<div class="mb-10 border border-grey-800 dark:border-grey-600">
<div class="py-4 px-4">
<div class=" {{ site .prose_classes }} ">
<p>I'm currently updating this course for Drupal 11. If you find any bugs or have any issues, <a href="mailto: {{ site .email }} ?subject=ATDC">please let me know</a>.
</div>
</div>
</div>
{% endif %}
2024-01-03 20:00:00 +00:00
<h1 class="mb-4 text-xl font-bold md:text-2xl">
{% block page_title %} {{ page .title }} {% endblock %}
</h1>
2024-01-03 20:00:00 +00:00
2024-02-28 09:05:00 +00:00
<div class=" {{ site .prose_classes }} ">
2024-01-03 20:00:00 +00:00
{% block content_wrapper %}
{% block content %} {% endblock %}
{% endblock %}
2024-01-03 20:00:00 +00:00
</div>
</main>
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
{% block content_bottom %} {% endblock %}
</div>
<footer class="mt-16 mb-6">
{% include 'main-menu.html.twig' %}
</footer>
2024-05-08 06:34:25 +00:00
</div>
2024-01-03 20:00:00 +00:00
</div>
{% endblock %}