www_duniayetu/templates/_default/base.html

13 lines
372 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-16 13:27:59 +00:00
<div id="content" class="p-4 pt-8 lg: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>