Dropper/src/dropper/templates/layout.html

47 lines
1.1 KiB
HTML
Raw Normal View History

2020-02-22 04:31:22 +00:00
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
{% if title %}
<title>{{title}}</title>
{% else %}
2021-02-14 01:17:11 +00:00
<title>{{TITLE}}</title>
2020-02-22 04:31:22 +00:00
{% endif %}
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.png') }}">
2022-06-17 05:00:53 +00:00
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap5/bootstrap.min.css')}}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap5/bootstrap-dark.min.css')}}">
2020-02-22 04:31:22 +00:00
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css')}}">
</head>
<body>
2021-02-14 01:17:11 +00:00
2020-02-22 04:31:22 +00:00
{% block content %}
2021-02-14 01:17:11 +00:00
{% endblock %}
2020-02-22 04:31:22 +00:00
2021-02-14 01:17:11 +00:00
{% block modals %}
{% include 'modals.html' %}
2020-02-22 04:31:22 +00:00
{% endblock %}
2021-02-14 01:17:11 +00:00
2020-02-22 04:31:22 +00:00
<!-- For Bootstrap in this exact order... -->
2022-06-17 05:00:53 +00:00
<script src="{{ url_for('static', filename='js/libs/jquery-3.3.1.slim.min.js')}}"></script>
<!-- For Bootstrap in this exact order... -->
<script src="{{ url_for('static', filename='js/libs/bootstrap5/bootstrap.bundle.min.js')}}"></script>
2020-02-22 04:31:22 +00:00
{% block scripts %}
{% endblock scripts %}
</body>
</html>