Added title and favicon support

This commit is contained in:
Caleb Gardner
2024-08-02 05:40:30 -05:00
parent fd89e568af
commit 87ac3bf270
4 changed files with 27 additions and 15 deletions
+1 -1
View File
@@ -48,6 +48,6 @@ func filesRequest(w http.ResponseWriter, r *http.Request) {
if r.URL.Query().Get("contentOnly") == "true" {
w.Write([]byte(pageContent))
} else {
sendIndexWithContent(w, pageContent)
sendIndexWithContent(w, pageContent, "Files", "")
}
}