From 6e4bbd6410b1ad4539012bc2364970e01151a8ab Mon Sep 17 00:00:00 2001 From: Arnie97 Date: Tue, 28 Jul 2020 14:08:30 +0800 Subject: [PATCH] frontend: replace non-standard xhtml mix with html5 --- frontend/render.go | 2 +- frontend/template.go | 12 +++++------- frontend/webserver.go | 5 ++++- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/frontend/render.go b/frontend/render.go index 018b139..f1af942 100644 --- a/frontend/render.go +++ b/frontend/render.go @@ -148,7 +148,7 @@ func summaryTable(isIPv6 bool, data string, serverName string) string { result += "" } result += "" - result += "" + result += "" } return result diff --git a/frontend/template.go b/frontend/template.go index a008320..3c84484 100644 --- a/frontend/template.go +++ b/frontend/template.go @@ -29,16 +29,14 @@ type tmplArguments struct { var tmpl = template.Must(template.New("tmpl").Parse(` - + - - - - + + + + {{ .Title }} - - diff --git a/frontend/webserver.go b/frontend/webserver.go index bc36594..1dd3ce8 100644 --- a/frontend/webserver.go +++ b/frontend/webserver.go @@ -99,7 +99,10 @@ func webHandlerBGPMap(endpoint string, command string) func(w http.ResponseWrite renderTemplate( w, r, "Bird-lg Go - "+html.EscapeString(endpoint+" "+backendCommand), - ` + +