Files
website-v2/templates/base.html
GabbyPrecious 0ca0a0b9ac alphakit setup
2021-10-09 09:53:46 +01:00

22 lines
609 B
HTML

<!DOCTYPE html>{% load static %}
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{# We like Tailwind CSS, but you're welcome to switch to something else #}
<link href="https://unpkg.com/tailwindcss@^1.3/dist/tailwind.min.css" rel="stylesheet">
{% block extra_head %}{% endblock %}
</head>
<body>
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
{% block footer_js %}{% endblock %}
</body>
</html>