This repository has been archived on 2025-06-11. You can view files and clone it, but cannot push or open issues or pull requests.
www_ow_freezone/templates/_default/base.html
2022-02-03 14:39:30 +03:00

11 lines
266 B
HTML

<!DOCTYPE html>
<html lang="en" charset="utf-8">
{% include "partials/head.html" %}
<body>
{% include "partials/header.html" %}
<div id="content">
{% block content %}{% endblock %}
</div>
{% include "partials/footer.html" %}
</body>
</html>