aboutsummaryrefslogtreecommitdiff
path: root/templates/layouts/base.django
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layouts/base.django')
-rw-r--r--templates/layouts/base.django15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/layouts/base.django b/templates/layouts/base.django
new file mode 100644
index 0000000..567b81d
--- /dev/null
+++ b/templates/layouts/base.django
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>{% if PageTitle %}{{ PageTitle }} - {% endif %}Dove</title>
+ <link rel="stylesheet" href="/static/css/style.css">
+ {% block head %}{% endblock %}
+</head>
+<body class="antialiased">
+ {% block content %}{% endblock %}
+ <script src="/static/js/htmx.min.js"></script>
+ {% block scripts %}{% endblock %}
+</body>
+</html>