summaryrefslogtreecommitdiff
path: root/static/website
diff options
context:
space:
mode:
Diffstat (limited to 'static/website')
-rw-r--r--static/website/templates/base.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/static/website/templates/base.html b/static/website/templates/base.html
new file mode 100644
index 0000000..9c76859
--- /dev/null
+++ b/static/website/templates/base.html
@@ -0,0 +1,11 @@
+{% load static %}
+<!DOCTYPE html>
+<html lang="en">
+ {% include 'header.html' %}
+ <body data-spy="scroll" data-target="#site-nav">
+ {% include 'navbar.html' %}
+ {% block content %}{% endblock content %}
+ {% include 'footer.html' %}
+ </body>
+</html>
+