Files
godoxy/internal/idlewatcher/html/loading_page.min.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>