13 lines
197 B
HTML
13 lines
197 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
{% include head.html %}
|
||
|
<body>
|
||
|
<div class="container main">
|
||
|
{% include navbar.html %}
|
||
|
{{ content }}
|
||
|
</div>
|
||
|
|
||
|
{% include footer.html %}
|
||
|
</body>
|
||
|
</html>
|