16 lines
202 B
HTML
16 lines
202 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
{% include header.html %}
|
|
|
|
<div class="wrap">
|
|
{{ content }}
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|