HNSDoH-checker/templates/index.html
Nathan Woodburn f4fdc29d80
Some checks failed
Build Docker / BuildSite (push) Failing after 23s
feat: Add initial monitoring
2024-06-22 17:34:01 +10:00

24 lines
609 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Go HTML Template</title>
<link rel="stylesheet" href="/assets/css/index.css">
<link rel="icon" href="/assets/img/favicon.png">
</head>
<body>
<h1>HNSDoH Node Status</h1>
{{ if .logContent}}
<h2>Log Output</h2>
<pre>{{.logContent}}</pre>
{{end}}
<!-- Reload automatically every 30 seconds -->
<script>
setTimeout(function(){
window.location.reload(1);
}, 30000);
</script>
</body>
</html>