Files
jiedian/panel/templates/base.html
T
dekun d339fbd917 fix: prefix panel API requests with subpath for nginx proxy
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>
2026-06-16 10:06:10 +08:00

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>