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-07-13 13:14:21 +00:00
|
|
|
<div id="content" class="p-4 pt-32 sm:p-12 md:p-16 lg:p-20 overflow-hidden">
|
2022-11-15 11:11:07 +00:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
{% include "partials/footer.html" %}
|
|
|
|
</body>
|
|
|
|
</html>
|