19 lines
583 B
HTML
19 lines
583 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>${site_name}</title>
|
|
<meta name="description" content="${site_description}">
|
|
<meta property="og:type" content="website">
|
|
<link rel="icon" href="${site_favicon}">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<div id="musicEmbed"></div>
|
|
<div id="snackbar" class="snackbar" role="status" aria-live="polite"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|