30 lines
942 B
HTML
30 lines
942 B
HTML
<!doctype html>
|
|
<html lang="zh-Hant">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link
|
|
rel="icon"
|
|
media="(prefers-color-scheme: light)"
|
|
href="%sveltekit.assets%/icon/logo-light.svg"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
media="(prefers-color-scheme: dark)"
|
|
href="%sveltekit.assets%/icon/logo-dark.svg"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>魚之魷魂 SquidSpirit</title>
|
|
<meta name="description" content="程式、科技、教學、分享" />
|
|
<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=Noto+Sans+Mono&family=Noto+Sans+TC:wght@100..900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover" class="antialiased">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|