d75193d527
Always inject panel_base from PANEL_PATH for static/API URLs and set SCRIPT_NAME in middleware so /api/stats works behind nginx subpaths. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
400 B
HTML
14 lines
400 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="{{ panel_base }}/static/style.css">
|
|
</head>
|
|
<body data-base="{{ panel_base }}">
|
|
{% block body %}{% endblock %}
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|