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,4 +1,4 @@
{% load static wagtailcore_tags %}
{% load static wagtailcore_tags tailwind_tags %}
<!DOCTYPE html>
<html lang="en">
@ -16,7 +16,9 @@
{% if page.search_description %}
<meta name="description" content="{{ page.search_description }}"/>
{% endif %}
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
{% tailwind_css %}
{# Force all links in the live preview panel to be opened in a new tab #}
{% if request.in_preview_panel %}
@ -37,7 +39,7 @@
{% endblock %}
</head>
<body class="{% block body_class %}{% endblock %}">
<body class="bg-gray-50 font-serif leading-normal tracking-normal {% block body_class %}{% endblock %}">
{% include "includes/header.html" %}