19 lines
267 B
HTML
19 lines
267 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include head.html %}
|
|
|
|
</head>
|
|
<body>
|
|
{% include nav.html %}
|
|
<br />
|
|
<div class="page-content">
|
|
<div class="wrapper">
|
|
{{ content }}
|
|
</div>
|
|
</div>
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|