blob: 9c768599e01dc270d3e0b8ece88f5dda118b9bd6 (
plain)
1
2
3
4
5
6
7
8
9
10
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>
|