forked from tfcoop/www_duniayetu
14 lines
461 B
HTML
14 lines
461 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" charset="utf-8">
|
|
|
|
{% include "partials/head.html" %}
|
|
|
|
<body>
|
|
{% include "partials/header.html" %}
|
|
<div id="content" class="p-4 pt-8 lg:pt-32 sm:p-12 md:p-16 lg:p-20 overflow-hidden">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
{% include "partials/footer.html" %}
|
|
<script type="text/javascript" src="{{ get_url(path='js/custom.js')}}"></script>
|
|
</body>
|
|
</html> |