mirror of
https://github.com/airlabspl/uptimemonitor.git
synced 2025-08-15 04:39:15 +02:00
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
<title>{{ block "title" .}}{{ end }} - Uptime Monitor</title>
|
|
<link rel="stylesheet" href="/static/css/daisyui.css?v=5.0.46" />
|
|
<link rel="stylesheet" href="/static/css/themes.css?v=5.0.46" />
|
|
<link rel="stylesheet" href="/static/css/main.css?v=1" />
|
|
{{ block "head" .}}{{ end }}
|
|
</head>
|
|
|
|
<body hx-ext="preload" data-theme="emerald" class="min-h-screen font-mono">
|
|
{{ block "body" . }}{{ end }}
|
|
|
|
<script defer src="/static/js/tailwind.min.js?v=5.0.46"></script>
|
|
<script defer src="/static/js/htmx.min.js?v=2.0.6"></script>
|
|
<script defer src="/static/js/htmx-ext-preload.min.js?v=2.1.0"></script>
|
|
<script defer src="/static/js/main.js?v=1"></script>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{ define "logo"}}
|
|
<a href="/" hx-boost preload="mouseover" class="flex items-center gap-1.5 text-sm font-medium">
|
|
<img src="/static/img/logo.svg" class="size-5!" />
|
|
|
|
<span class="">
|
|
UM
|
|
|
|
{{ with .Version }}
|
|
<span class="text-neutral-400 text-xs font-normal truncate">{{ . }}</span>
|
|
{{ end }}
|
|
</span>
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ define "sponsors" }}
|
|
<div hx-get="/sponsors" hx-trigger="intersect" hx-swap="outerHTML"></div>
|
|
{{ end }} |