13 lines
327 B
HTML
13 lines
327 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" charset="utf-8">
|
|
|
|
{% include "partials/head.html" %}
|
|
|
|
<body>
|
|
{% include "partials/header.html" %}
|
|
<div id="content" class="pt-8 mx-auto">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
{% include "partials/footer.html" %}
|
|
</body>
|
|
</html> |