13 lines
203 B
HTML
13 lines
203 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
{% include "head.html" %}
|
||
|
<body>
|
||
|
<main>
|
||
|
{% include "nav.html" %}
|
||
|
{% block content %}
|
||
|
{% endblock %}
|
||
|
</main>
|
||
|
{% include "footer.html" %}
|
||
|
</body>
|
||
|
</html>
|