46728e12f7
Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
885 B
HTML
22 lines
885 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="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&family=Orbitron:wght@500;700;900&family=Rajdhani:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ panel_base }}/static/style.css">
|
|
</head>
|
|
<body data-base="{{ panel_base }}">
|
|
<div class="cyber-bg" aria-hidden="true">
|
|
<div class="cyber-grid"></div>
|
|
<div class="cyber-glow"></div>
|
|
<div class="cyber-scanlines"></div>
|
|
</div>
|
|
{% block body %}{% endblock %}
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|