Files
Anthias/templates/base.html
2019-06-10 18:31:07 +06:00

22 lines
229 B
HTML

<!DOCTYPE html>
<html>
<head>
{% include "head.html" %}
{% block head %}
{% endblock %}
</head>
<body>
{% include 'header.html' %}
{% block content %}
{% endblock %}
{% include 'footer.html' %}
</body>
</html>