New /downloads route behind auth with Sidebar, i18n DE/EN, and download card for HL Patents Style.dotm. Structured so adding more files is a one-liner in the files array.
8 lines
151 B
Go
8 lines
151 B
Go
package handlers
|
|
|
|
import "net/http"
|
|
|
|
func handleDownloadsPage(w http.ResponseWriter, r *http.Request) {
|
|
http.ServeFile(w, r, "dist/downloads.html")
|
|
}
|