www_duniayetu/templates/_default/base.html

13 lines
338 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" %}
<div id="content" class="mx-auto overflow-hidden">
{% block content %}{% endblock %}
</div>
{% include "partials/footer.html" %}
</body>
</html>