34 lines
924 B
HTML
34 lines
924 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
%sveltekit.head%
|
|
<!-- SMUI Styles -->
|
|
<link rel="stylesheet" href="/smui.css" media="(prefers-color-scheme: light)" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="/smui-dark.css"
|
|
media="screen and (prefers-color-scheme: dark)"
|
|
/>
|
|
<!-- Material Icons -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
|
/>
|
|
<!-- Roboto -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700"
|
|
/>
|
|
<!-- Roboto Mono -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Roboto+Mono"
|
|
/>
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|