22 lines
340 B
HTML
22 lines
340 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" prefix="foaf: http://xmlns.com/foaf/0.1/">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
{% if page.navigation %}
|
|
{% include navigation.html %}
|
|
{% endif %}
|
|
|
|
<main page="{{ page.page_name }}">
|
|
<!-- <div class="container"> -->
|
|
{{ content }}
|
|
<!-- </div> -->
|
|
</main>
|
|
|
|
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|