aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/templates/dashboard/server_status.html
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-10-08 15:22:58 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-10-08 15:52:07 -0400
commit9b13628980d48e5efd0cc582c80a4a3e94a59a25 (patch)
treece61517801f7a4510d02ee8fa6cf830d41e452c3 /templates/dashboard/server_status.html
parent3f5e6e9c3ebb396949b091ee43b76d3303401fd3 (diff)
Remove dashboard rendering
The dashboard html falls out of the responsibility of the backend. The static site provides the html.
Diffstat (limited to 'templates/dashboard/server_status.html')
-rw-r--r--templates/dashboard/server_status.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/templates/dashboard/server_status.html b/templates/dashboard/server_status.html
deleted file mode 100644
index d118714..0000000
--- a/templates/dashboard/server_status.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{{define "server_status"}}
-<section class="dashboard-item server-status">
- <h2>Server Status</h2>
- <div id=uptime>
- <dl>
- <dt>Url</dt>
- <dd>{{ .ServerStatus.Site }}</dd>
- <dt>Online</dt>
- <dd>{{ .ServerStatus.Online }}</dd>
- <dt>Timestamp</dt>
- <dd>{{ .ServerStatus.Timestamp }}</dd>
- </dl>
- </div>
-</section>
-{{end}}