summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorprashantsinalkar2018-08-15 23:18:44 +0530
committerprashantsinalkar2018-08-15 23:18:44 +0530
commit3e2b4d5acec1e0666be52945e3fd38b68ad6e8fe (patch)
tree7ebad5a67d43f85861036146258d61823122fdf9 /static
parent664797964b6e361059a0591d09de539f5d3763ad (diff)
downloadSciPy2018-3e2b4d5acec1e0666be52945e3fd38b68ad6e8fe.tar.gz
SciPy2018-3e2b4d5acec1e0666be52945e3fd38b68ad6e8fe.tar.bz2
SciPy2018-3e2b4d5acec1e0666be52945e3fd38b68ad6e8fe.zip
added base html template
Diffstat (limited to 'static')
-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>
+