Add tailwindcss

This commit is contained in:
Konstantin 2024-03-15 07:26:20 +01:00
parent 24123c99cf
commit 9a5489c170
17 changed files with 1833 additions and 102 deletions

View file

@ -1,10 +1,10 @@
{% extends "base.html" %}
{% load wagtailcore_tags wagtailimages_tags %}
{% block body_class %}template-homepage{% endblock %}
{% block body_class %}{% endblock %}
{% block content %}
<div>
<section class="flex flex-col items-center justify-center h-full">
<h1>{{ page.title }}</h1>
{% image page.image fill-480x320 %}
<p>{{ page.hero_text }}</p>
@ -13,7 +13,7 @@
{% firstof page.hero_cta page.hero_cta_link.title %}
</a>
{% endif %}
</div>
</section>
{{ page.body|richtext }}
{% endblock content %}