www_ourverse.tf/templates/_default/base.html

14 lines
452 B
HTML
Raw Normal View History

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-20 07:47:55 +00:00
<div id="content" class="p-4 pt-24 lg:pt-0 sm:p-12 lg:p-0 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>