From 5ccb53fb5dcd96431aa514d4144b66a6aaf38ed3 Mon Sep 17 00:00:00 2001 From: Calum Andrew Morrell Date: Sun, 16 Feb 2025 23:48:56 +0000 Subject: [PATCH] Added base template. --- core/templates/base.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 core/templates/base.html diff --git a/core/templates/base.html b/core/templates/base.html new file mode 100644 index 0000000..56d5e56 --- /dev/null +++ b/core/templates/base.html @@ -0,0 +1,18 @@ +{% load static %} + + + + + + + {% block title %}Drulum{% endblock %} + {# #} + + +{% block page %} + {% block header %}{% include 'header.html' %}{% endblock %} + {% block content %}{% endblock %} + {% block footer %}{% include 'footer.html' %}{% endblock %} +{% endblock %} + + \ No newline at end of file