a5e1e94fb2
Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
659 B
HTML
22 lines
659 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{% block title %}本地导航{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
|
|
</head>
|
|
<body>
|
|
{% with msgs = get_flashed_messages(with_categories=true) %}
|
|
{% if msgs %}
|
|
<div class="flash-wrap" role="status">
|
|
{% for category, message in msgs %}
|
|
<div class="flash {{ category }}">{{ message }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% block body %}{% endblock %}
|
|
</body>
|
|
</html>
|