mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
63 lines
1.8 KiB
HTML
63 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title><%= it.title %></title>
|
|
<link rel="icon" href="/favicon.png" />
|
|
<link
|
|
rel="preload"
|
|
href="/font/Mona-Sans.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin=""
|
|
/>
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<meta name="title" content="<%= it.title %>" />
|
|
<meta name="description" content="<%= it.description %>" />
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="<%= it.url %>" />
|
|
<meta property="og:title" content="<%= it.title %>" />
|
|
<meta property="og:description" content="<%= it.description %>" />
|
|
<meta property="og:image" content="<%= it.image %>" />
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:url" content="<%= it.url %>" />
|
|
<meta property="twitter:title" content="<%= it.title %>" />
|
|
<meta property="twitter:description" content="<%= it.description %>" />
|
|
<meta property="twitter:image" content="<%= it.image %>" />
|
|
<style>
|
|
@font-face {
|
|
font-family: "Mona Sans";
|
|
src:
|
|
url("/font/Mona-Sans.woff2") format("woff2 supports variations"),
|
|
url("/font/Mona-Sans.woff2") format("woff2-variations");
|
|
font-weight: 400 500 600 700 800;
|
|
font-stretch: 75% 125%;
|
|
font-display: swap;
|
|
}
|
|
|
|
:root {
|
|
/* bg-gray-900 */
|
|
--bg-color: rgb(17 24 39);
|
|
color-scheme: dark;
|
|
}
|
|
|
|
html {
|
|
font-family: "Mona Sans";
|
|
background-color: var(--bg-color);
|
|
color: #fff;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app" class="min-h-screen"></div>
|
|
<!--template:footer-->
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|