This repository has been archived on 2025-06-11. You can view files and clone it, but cannot push or open issues or pull requests.
www_ournomads/templates/_default/base.html
2022-10-06 16:08:29 +02:00

13 lines
352 B
HTML

<!DOCTYPE html>
<html lang="en" charset="utf-8">
{% include "partials/head.html" %}
<body>
{% include "partials/header.html" %}
<div id="content" class="mx-8 md:mx-12 lg:mx-16 xl:mx-20 pt-24">
{% block content %}{% endblock %}
</div>
{% include "partials/footer.html" %}
</body>
</html>