From 3e2b4d5acec1e0666be52945e3fd38b68ad6e8fe Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Wed, 15 Aug 2018 23:18:44 +0530 Subject: added base html template --- static/website/templates/base.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 static/website/templates/base.html (limited to 'static/website') 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 %} + + + {% include 'header.html' %} + + {% include 'navbar.html' %} + {% block content %}{% endblock content %} + {% include 'footer.html' %} + + + -- cgit