19 lines
265 B
HTML
19 lines
265 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" prefix="foaf: http://xmlns.com/foaf/0.1/">
|
|
|
|
<head>
|
|
{% include head.html %}
|
|
</head>
|
|
<body>
|
|
|
|
{% if page.navigation %}
|
|
{% include navigation.html %}
|
|
{% endif %}
|
|
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|