|
<!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="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.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 %} |
|
|
|
{% if sidebar %} |
|
{% with context=sidebar_context %} |
|
{% include sidebar_path %} |
|
{% endwith %} |
|
{% endif %} |
|
|
|
{% block content %} |
|
{% with context=sidebar_context %} |
|
{% include sidebar_path %} |
|
{% endwith %} |
|
{% endblock %} |
|
|
|
{% if footer %} |
|
{% with context=footer_context %} |
|
{% include footer_path %} |
|
{% endwith %} |
|
{% endif %} |
|
|
|
{% block body_scripts %} |
|
{% endblock %} |
|
</body> |
|
</html> |