You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.8 KiB
46 lines
1.8 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}My Website{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('main.static', filename='css/bootstrap.min.css') }}">
|
|
<link href="{{ url_for('main.static', filename='css/headers.css') }}" rel="stylesheet">
|
|
<style>
|
|
.bi {
|
|
vertical-align: -.125em;
|
|
fill: currentColor;
|
|
}
|
|
{% block style %}{% endblock %}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include 'header.html' %}
|
|
<!-- Modal Structure -->
|
|
<div class="modal fade" id="responseModal" tabindex="-1" aria-labelledby="responseModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h3 class="modal-title" id="responseModalLabel">提示信息</h3>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body" id="modalMessage">
|
|
<!-- The message from the server will be inserted here -->
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<main class="p-0 mb-0">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
{% include 'footer.html' %}
|
|
<script src="{{ url_for('main.static', filename='scripts/bootstrap.bundle.min.js') }}"></script>
|
|
<script src="{{ url_for('main.static', filename='scripts/base.js') }}"></script>
|
|
{% block script %}{% endblock %}
|
|
|
|
</body>
|
|
</html>
|
|
|