17 lines
198 B
HTML
17 lines
198 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
{% include head.html %}
|
||
|
|
||
|
<body>
|
||
|
|
||
|
{% include navigation.html %}
|
||
|
|
||
|
<main>
|
||
|
{{ content }}
|
||
|
</main>
|
||
|
|
||
|
{% include footer.html %}
|
||
|
</body>
|
||
|
</html>
|