15 lines
250 B
Plaintext
15 lines
250 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
{% include "head" %} {% block head %} {% endblock %}
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<!-- Main content -->
|
||
|
{% block content %} {% endblock %}
|
||
|
|
||
|
<!-- Footer -->
|
||
|
{% include "footer" %}
|
||
|
</body>
|
||
|
</html>
|