Files
paliad/internal/handlers/downloads.go
m cb0e61f0bf feat: dedicated downloads page with card grid layout
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.
2026-04-14 19:32:07 +02:00

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")
}