www_freeflownation/templates/_default/base.html
2022-02-11 07:43:02 +03:00

13 lines
266 B
HTML

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