Added base template.

pull/1/head
Calum Andrew Morrell 2025-02-16 23:48:56 +00:00
parent 7b8a57fc92
commit 5ccb53fb5d
1 changed files with 18 additions and 0 deletions

18
core/templates/base.html Normal file
View File

@ -0,0 +1,18 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Drulum{% endblock %}</title>
{# <link rel="stylesheet" href="{% static 'css/base.css' %}">#}
</head>
<body>
{% block page %}
{% block header %}{% include 'header.html' %}{% endblock %}
{% block content %}{% endblock %}
{% block footer %}{% include 'footer.html' %}{% endblock %}
{% endblock %}
</body>
</html>