mirror of
https://github.com/youwen5/site.git
synced 2024-11-28 10:53:50 -08:00
Youwen Wu
34aff92c42
- add unfinished mobile drawer - massive blog formatting updates - small style updates to main page, etc
21 lines
514 B
HTML
21 lines
514 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link
|
|
rel="icon"
|
|
href="%sveltekit.assets%/favicon-light.ico"
|
|
media="(prefers-color-scheme: light)"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
href="%sveltekit.assets%/favicon-dark.ico"
|
|
media="(prefers-color-scheme: dark)"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|