mirror of
https://github.com/yusing/godoxy.git
synced 2026-04-26 10:49:10 +02:00
27 lines
812 B
HTML
27 lines
812 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<meta charset="UTF-8" /><meta
|
|
name="viewport"
|
|
content="width=device-width,initial-scale=1.0"
|
|
/><meta name="color-scheme" content="light dark" /><title>{{.Title}}</title
|
|
><link rel="stylesheet" href="{{.LoadingPageCSSPath}}" /><link
|
|
rel="icon"
|
|
href="{{.FavIconPath}}"
|
|
/>
|
|
<body>
|
|
<script>
|
|
const wakeEventsPath = "{{.WakeEventsPath}}";
|
|
</script>
|
|
<script src="{{.LoadingPageJSPath}}" defer></script>
|
|
<div class="container">
|
|
<img class="logo" src="{{.FavIconPath}}" alt="" />
|
|
<div id="loading-dots" class="loading-dots" aria-hidden="true">
|
|
<div class="dot"></div>
|
|
<div class="dot"></div>
|
|
<div class="dot"></div>
|
|
</div>
|
|
<div id="console" class="console"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|