Files
djupet/index.html
Fredrik Johansson 1eb9c43625
All checks were successful
Docker / build-and-push (push) Successful in 43s
Add favicon
Purple downward-chevron mark matching the site's eldritch-purple accent, in the same rounded-square favicon style used across the other self-hosted projects.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-19 19:49:28 +02:00

16 lines
494 B
HTML

<!doctype html>
<html lang="sv">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Djupet</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>