refactor(layouts/base.html): unify allauth's base with our base
This commit is contained in:
@@ -1,26 +1 @@
|
||||
<!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>
|
||||
{% extends "base.html" %}
|
||||
|
||||
Reference in New Issue
Block a user