feat: add article page

This commit is contained in:
Solomon Victorino
2024-06-23 16:38:53 -06:00
parent 941cafc664
commit 0ced2495ee
10 changed files with 279 additions and 34 deletions

View File

@ -29,6 +29,7 @@ func New(logger *utils.Logger, staticFiles static) *mux.Router {
{Path: "/robots.txt", Handler: robotsHandler},
{Path: "/albums/{artist}/{albumName}", Handler: album},
{Path: "/artists/{artist}", Handler: artist},
{Path: "/a/{article}", Handler: article},
{Path: "/images/{filename}.{ext}", Handler: imageProxy},
{Path: "/search", Handler: search},
{Path: "/{annotation-id}/{artist-song}/{verse}/annotations", Handler: annotations},