From d8391b8f8b5681e235278d8bbd15939420087bf4 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Wed, 15 Aug 2018 23:33:44 +0530 Subject: added extend from base html template --- static/website/templates/index.html | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/static/website/templates/index.html b/static/website/templates/index.html index 55713ee..9d36028 100644 --- a/static/website/templates/index.html +++ b/static/website/templates/index.html @@ -1,11 +1,6 @@ +{% extends "base.html" %} {% load static %} - - -{% include 'header.html' %} -
- - {% include 'navbar.html' %} - {% include 'home.html' %} - {% include 'footer.html' %} - - + {% block content %} + + {% include 'home.html' %} + {% endblock %} -- cgit