summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/website/templates/index.html15
1 files 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 %}
-<!DOCTYPE html>
-<html lang="en">
-{% include 'header.html' %}
-<body data-spy="scroll" data-target="#site-nav">
-<div class="se-pre-con"></div>
- {% include 'navbar.html' %}
- {% include 'home.html' %}
- {% include 'footer.html' %}
- </body>
-</html>
+ {% block content %}
+ <div class="se-pre-con"></div>
+ {% include 'home.html' %}
+ {% endblock %}