mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-14 14:23:33 +01:00
33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="{{.LoadingPageCSSPath}}" />
|
|
<link rel="icon" href="{{.FavIconPath}}" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
const wakeEventsPath = "{{.WakeEventsPath}}";
|
|
</script>
|
|
<script src="{{.LoadingPageJSPath}}" defer></script>
|
|
<div class="container">
|
|
<!-- icon handled by waker_http -->
|
|
<img class="logo" src="{{.FavIconPath}}" />
|
|
<div id="loading-dots" class="loading-dots">
|
|
<div class="dot"></div>
|
|
<div class="dot"></div>
|
|
<div class="dot"></div>
|
|
</div>
|
|
<div id="console" class="console"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|