2026-05-10 06:41:44 +00:00
|
|
|
<!DOCTYPE html>
|
2026-05-10 16:12:39 +08:00
|
|
|
<html lang="zh-CN">
|
2026-05-10 06:41:44 +00:00
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<link rel="icon" href="assets/favicon.ico" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<script>
|
|
|
|
|
window.BASE_URL = "{{ .BASE_URL }}"
|
|
|
|
|
|
|
|
|
|
// Dev Mode
|
|
|
|
|
if (window.BASE_URL.charAt(0) === '{') window.BASE_URL = "/app/"
|
|
|
|
|
</script>
|
|
|
|
|
<title>S-UI</title>
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<div id="app"></div>
|
|
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|