File size: 792 Bytes
e53c2d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% block title %}
    {% endblock %}
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <link href="/static/styles.css" rel="stylesheet">
    {% block head_scripts %}
    {% endblock %}
</head>
<body>
    {% if navbar %}
        {% with context=navbar_context %}
            {% include navbar_path %}
        {% endwith %}
    {% endif %}

    {% block content %}
    {% endblock %}

    {% if footer %}
        {% with context=footer_context %}
            {% include footer_path %}
        {% endwith %}
    {% endif %}

    {% block body_scripts %}
    {% endblock %}
</body>
</html>