www_ourworld_tf/templates/_default/base.html
2022-02-28 19:01:33 +03:00

16 lines
364 B
HTML

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