feat: add infinite scroll to browse page

This commit is contained in:
2026-05-02 17:38:53 +02:00
committed by Mikkel Elvers
parent db9882329b
commit b0fe7bf061
3 changed files with 78 additions and 7 deletions

View File

@@ -59,6 +59,12 @@ func GetRenderer() *Renderer {
}
return false
},
"add": func(a, b int) int {
return a + b
},
"sub": func(a, b int) int {
return a - b
},
}
pages, err := filepath.Glob(filepath.Join(".", "templates", "*.gohtml"))