20 lines
430 B
HTML
20 lines
430 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include "layouts/html-head.html" %}
|
|
<title>{% block title %}{% endblock %}</title>
|
|
</head>
|
|
<body>
|
|
{% include "navbar.html" %}
|
|
<section id="main" class="section">
|
|
|
|
<!-- Messages Section -->
|
|
{% include "messages.html" %}
|
|
|
|
<!-- Main Section -->
|
|
{% block content %}{% endblock %}
|
|
</section>
|
|
{% include "footer.html" %}
|
|
</body>
|
|
</html>
|