19 lines
274 B
HTML
19 lines
274 B
HTML
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include "includes/head.html" %}
|
|
<title>
|
|
{% block title %}
|
|
{% endblock %}
|
|
</title>
|
|
</head>
|
|
<body>
|
|
{% include "includes/navbar.html" %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
{% include "includes/footer.html"%}
|
|
</body>
|
|
</html> |