mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-14 11:20:53 +08:00
33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
|
|
<link rel="icon" type="image/png" href="/images/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Shadcn Admin</title>
|
|
<meta
|
|
name="description"
|
|
content="Admin Dashboard UI built with Shadcn and Vite."
|
|
/>
|
|
<script>
|
|
window.settings = {
|
|
base_url: 'http://127.0.0.1:8000',
|
|
title: 'Xboard',
|
|
version: '1.0.0',
|
|
logo: 'https://xboard.io/i6mages/logo.png',
|
|
secure_path: '/afbced4e',
|
|
}
|
|
</script>
|
|
<script src="./locales/en-US.js"></script>
|
|
<script src="./locales/zh-CN.js"></script>
|
|
<script src="./locales/ko-KR.js"></script>
|
|
<script type="module" crossorigin src="./assets/index.js"></script>
|
|
<link rel="stylesheet" crossorigin href="./assets/index.css">
|
|
<link rel="stylesheet" crossorigin href="./assets/vendor.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|