From 76ff79f47035c11c1e0dfcd283034b738b5c3f0d Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Thu, 18 Aug 2022 21:11:42 -0600 Subject: add admin page, and spruce up posts and assets --- srv/src/http/api.go | 1 + 1 file changed, 1 insertion(+) (limited to 'srv/src/http/api.go') diff --git a/srv/src/http/api.go b/srv/src/http/api.go index 4143200..4ba6450 100644 --- a/srv/src/http/api.go +++ b/srv/src/http/api.go @@ -217,6 +217,7 @@ func (a *api) blogHandler() http.Handler { mux.Handle("/static/", http.FileServer(http.FS(staticFS))) mux.Handle("/follow", a.renderDumbTplHandler("follow.html")) + mux.Handle("/admin", a.renderDumbTplHandler("admin.html")) mux.Handle("/mailinglist/unsubscribe", a.renderDumbTplHandler("unsubscribe.html")) mux.Handle("/mailinglist/finalize", a.renderDumbTplHandler("finalize.html")) mux.Handle("/feed.xml", a.renderFeedHandler()) -- cgit v1.2.3