14 lines
205 B
HTML
14 lines
205 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
{% include head.html %}
|
||
|
</head>
|
||
|
<body>
|
||
|
{% include navigation.html %}
|
||
|
|
||
|
{{ content }}
|
||
|
|
||
|
{% include footer.html %}
|
||
|
</body>
|
||
|
</html>
|