feat(templates/allauth): style allauth elements
This commit is contained in:
26
kursy/templates/allauth/layouts/base.html
Normal file
26
kursy/templates/allauth/layouts/base.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
{% load i18n tailwind_tags %}
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="generator" content="Hugo 0.118.2">
|
||||
<title>
|
||||
{% block head_title %}{% endblock %}
|
||||
</title>
|
||||
{% tailwind_css %}
|
||||
{% block extra_head %}
|
||||
{% endblock extra_head %}
|
||||
</head>
|
||||
<body class="min-h-screen flex flex-shrink-0 flex-col">
|
||||
<a class="sr-only focus:not-sr-only" href="#content">{% translate "Skip to main content" %}</a>
|
||||
{% include "header.html" %}
|
||||
{% block body %}
|
||||
{% block content %}
|
||||
{% endblock content %}
|
||||
{% endblock body %}
|
||||
{% block extra_body %}
|
||||
{% endblock extra_body %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user