12 lines
226 B
HTML
12 lines
226 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{% include "head.html" %}
|
|
<body>
|
|
<main class="flex-container">
|
|
{% include "nav.html" %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
{% include "footer.html" %}
|
|
</main>
|
|
</body>
|
|
</html>
|