Initial commit: 网络验证平台
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" media="(prefers-color-scheme: dark)" href="/logo.svg" />
|
||||
<link rel="icon" type="image/svg+xml" media="(prefers-color-scheme: light)" href="/logo-black.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{{.SiteName}}</title>
|
||||
<meta name="description" content="{{.SiteDescription}}" />
|
||||
<meta name="keywords" content="{{.SiteKeywords}}" />
|
||||
|
||||
<!-- Google Fonts - Inter -->
|
||||
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<script>
|
||||
window.__SITE_CONFIG__ = {
|
||||
siteName: '{{.SiteName}}',
|
||||
siteDescription: '{{.SiteDescription}}',
|
||||
logoLight: '{{.LogoLight}}',
|
||||
logoDark: '{{.LogoDark}}',
|
||||
favicon: '{{.Favicon}}',
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user