mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-06 21:11:24 +02:00
f2efd64141
* refactor: Move `styles/` to `src/lib` and remove legacy alias * chore: Add newline
24 lines
590 B
HTML
24 lines
590 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<link rel="icon" href="favicon.ico" sizes="48x48" />
|
|
<link rel="icon" href="favicon.svg" sizes="any" type="image/svg+xml" />
|
|
|
|
<link rel="apple-touch-icon" href="apple-touch-icon-180x180.png" />
|
|
|
|
<link rel="manifest" href="./manifest.webmanifest" />
|
|
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, interactive-widget=resizes-content"
|
|
/>
|
|
%sveltekit.head%
|
|
</head>
|
|
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|