25 lines
302 B
HTML
25 lines
302 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
{% include head.html %}
|
||
|
|
||
|
<body>
|
||
|
|
||
|
{% include header.html %}
|
||
|
|
||
|
<!-- content start -->
|
||
|
|
||
|
<div class="page-content">
|
||
|
<div class="wrapper">
|
||
|
{{ content }}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- content end -->
|
||
|
|
||
|
{% include footer.html %}
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|