20 lines
582 B
HTML
20 lines
582 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"/>
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
|
<title>{{ config.APP_TITLE }}</title>
|
|
</head>
|
|
<body class="body">
|
|
{% include '_navbar.html' %}
|
|
|
|
<main class="main">
|
|
{% include '_breadcrumb.html' %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|