summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: a78d8b99a8f2fe1dc34b58ef2185405e55967247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!doctype html>
<html lang="en">
	{% include "partials/head.html" %}
	<body>
		<header>
			{% include "partials/nav.html" %}
		</header>
		<div class="main-content">
			{% block content %}{% endblock content %}
		</div>
		{% include "partials/footer.html" %}
	</body>
</html>