Single-media posts that are neither albums nor galleries (closes #15)

This commit is contained in:
video-prize-ranch
2022-02-17 16:07:15 -05:00
parent ece82ce9ab
commit 5ba3b386a6
4 changed files with 53 additions and 17 deletions

View File

@@ -27,8 +27,8 @@ func HandleGallery(c *fiber.Ctx) error {
c.Set("Cache-Control", "public,max-age=31557600")
}
return c.Render("gallery", fiber.Map{
"album": album,
return c.Render("post", fiber.Map{
"post": album,
"comments": comments,
})
}