generated from nathanwoodburn/go-webserver-template
24 lines
609 B
HTML
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> |