diff --git a/README.md b/README.md
index 6efb99a..289d8d7 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Bird-lg-go
-[](https://ci.burble.dn42/burble.dn42/bird-lg-go)
+[](https://ci.burble.dn42/burble.dn42/bird-lg-go)
An alternative implementation for [bird-lg](https://github.com/sileht/bird-lg) written in Go. Both frontend and backend (proxy) are implemented, and can work with either the original Python implementation or the Go implementation.
diff --git a/frontend/assets/templates/bird.tpl b/frontend/assets/templates/bird.tpl
index e2d6558..f832525 100644
--- a/frontend/assets/templates/bird.tpl
+++ b/frontend/assets/templates/bird.tpl
@@ -1,2 +1,2 @@
-
{{ html .ServerName }}{{ html .Target }}
+{{ html .Target }}
{{ .Result }}
diff --git a/frontend/assets/templates/page.tpl b/frontend/assets/templates/page.tpl
index 097e377..ca6760d 100644
--- a/frontend/assets/templates/page.tpl
+++ b/frontend/assets/templates/page.tpl
@@ -27,29 +27,7 @@
{{ $server = .AllServersURL }}
{{ $target = "" }}
{{ end }}
-
+
{{ if .IsWhois }}
{{ $target = .WhoisTarget }}
{{ end }}
diff --git a/frontend/render.go b/frontend/render.go
index 96e6d10..af88ba9 100644
--- a/frontend/render.go
+++ b/frontend/render.go
@@ -25,14 +25,11 @@ var optionsMap = map[string]string{
"route_from_origin_all_primary": "show route where bgp_path.last = ... all primary",
"route": "show route for ...",
"route_all": "show route for ... all",
- "route_bgpmap": "show route for ... (bgpmap)",
"route_where": "show route where net ~ [ ... ]",
"route_where_all": "show route where net ~ [ ... ] all",
- "route_where_bgpmap": "show route where net ~ [ ... ] (bgpmap)",
"route_generic": "show route ...",
"generic": "show ...",
"whois": "whois ...",
- "traceroute": "traceroute ...",
}
// pre-compiled regexp and constant statemap for summary rendering
diff --git a/frontend/webserver.go b/frontend/webserver.go
index 95e1846..eacf303 100644
--- a/frontend/webserver.go
+++ b/frontend/webserver.go
@@ -233,13 +233,13 @@ func webServerStart(l net.Listener) {
http.HandleFunc("/route_from_origin_all_primary/", webBackendCommunicator("bird", "route_from_origin_all_primary"))
http.HandleFunc("/route/", webBackendCommunicator("bird", "route"))
http.HandleFunc("/route_all/", webBackendCommunicator("bird", "route_all"))
- http.HandleFunc("/route_bgpmap/", webHandlerBGPMap("bird", "route_bgpmap"))
+ // http.HandleFunc("/route_bgpmap/", webHandlerBGPMap("bird", "route_bgpmap"))
http.HandleFunc("/route_where/", webBackendCommunicator("bird", "route_where"))
http.HandleFunc("/route_where_all/", webBackendCommunicator("bird", "route_where_all"))
- http.HandleFunc("/route_where_bgpmap/", webHandlerBGPMap("bird", "route_where_bgpmap"))
+ // http.HandleFunc("/route_where_bgpmap/", webHandlerBGPMap("bird", "route_where_bgpmap"))
http.HandleFunc("/route_generic/", webBackendCommunicator("bird", "route_generic"))
http.HandleFunc("/generic/", webBackendCommunicator("bird", "generic"))
- http.HandleFunc("/traceroute/", webBackendCommunicator("traceroute", "traceroute"))
+ // http.HandleFunc("/traceroute/", webBackendCommunicator("traceroute", "traceroute"))
http.HandleFunc("/whois/", webHandlerWhois)
// http.HandleFunc("/api/", apiHandler)
// http.HandleFunc("/telegram/", webHandlerTelegramBot)