mirror of
https://github.com/pockethost/pockethost.git
synced 2026-03-12 11:39:20 +00:00
26 lines
707 B
HTML
26 lines
707 B
HTML
<!doctype html>
|
|
<!--suppress ALL -->
|
|
<html lang="en" data-theme="dark">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>PocketHost</title>
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/a11y-dark.min.css"
|
|
id="hljs-link"
|
|
/>
|
|
|
|
<link href="/icons/fontawesome.min.css" rel="stylesheet" />
|
|
<link href="/icons/all.min.css" rel="stylesheet" />
|
|
<link href="/icons/brands.min.css" rel="stylesheet" />
|
|
|
|
%sveltekit.head%
|
|
</head>
|
|
<body>
|
|
<div>%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|