summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
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>
+