d339fbd917
Stats and node API calls were hitting /api/* at the site root instead of the hidden PANEL_PATH, causing stats to show unavailable behind nginx. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
460 B
HTML
14 lines
460 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}jiedian 面板{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body{% if request.script_root %} data-base="{{ request.script_root }}"{% endif %}>
|
|
{% block body %}{% endblock %}
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|