Andrchest's picture
final try 1
e53c2d7
raw
history blame contribute delete
792 Bytes
<!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>