2022-11-15 11:11:07 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" charset="utf-8">
|
|
|
|
|
|
|
|
{% include "partials/head.html" %}
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{% include "partials/header.html" %}
|
2023-11-29 14:29:29 +00:00
|
|
|
<div id="content" class="p-4 pt-24 sm:p-12 overflow-hidden">
|
2022-11-15 11:11:07 +00:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
{% include "partials/footer.html" %}
|
2023-07-17 13:30:29 +00:00
|
|
|
<script type="text/javascript" src="{{ get_url(path='js/custom.js')}}"></script>
|
2022-11-15 11:11:07 +00:00
|
|
|
</body>
|
|
|
|
</html>
|