workshop-tailwind-css/templates/page.html.twig

14 lines
534 B
Twig
Raw Normal View History

2020-12-26 21:23:15 +00:00
{% extends 'html.html.twig' %}
{% block body %}
2021-02-17 21:37:16 +00:00
{% include 'includes/navbar.html.twig' %}
2020-12-26 21:23:15 +00:00
{% block content %}{% endblock %}
2021-02-18 01:42:44 +00:00
<footer class="py-10 bg-blue-dark">
<div class="px-4 mx-auto max-w-screen-2xl">
<p class="text-white">A clone of the <a class="underline" href="https://www.fldrupal.camp">DrupalCamp Florida website</a>, built by <a class="underline" href="https://www.oliverdavies.uk">Oliver Davies</a>, for his Tailwind CSS training workshop.</p>
</div>
</footer>
2020-12-26 21:23:15 +00:00
{% endblock %}