forked from tfcoop/www_duniayetu
13 lines
338 B
HTML
13 lines
338 B
HTML
|
<!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>
|