summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorfschildt <florian.schildt@protonmail.com>2025-10-17 14:00:16 +0200
committerfschildt <florian.schildt@protonmail.com>2025-10-17 14:00:16 +0200
commitd1e59579ca19454369d56a8c7525e109a86841e2 (patch)
tree695f348acca3a32c97512685384da818a3ba5195 /templates/base.html
first commit
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..75d6ed8
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,22 @@
+{% load static %}
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <title>fsweb</title>
+ <link rel="icon" type="image/x-icon" href="{% static 'favicon.ico' %}">
+ <link rel="stylesheet" type="text/css" href="{% static 'css/base.css' %}">
+ <link rel="stylesheet" type="text/css" href="{% static 'css/navbar.css' %}">
+ {% block morelinks %}
+ {% endblock %}
+ </head>
+
+ <body>
+ {% include 'navbar.html' %}
+ <div class="container">
+ {% block content %}
+ {% endblock %}
+ </div>
+ </body>
+</html>
+