kukkubukku/controller/backend.sh

13 lines
257 B
Bash
Raw Normal View History

#!/bin/bash
route GET "/backend" backendHome
backendHome() {
requireLoggedIn
2022-03-30 18:41:59 +00:00
htmlContent
endHeaders
2022-03-30 18:41:59 +00:00
title="Backend"
2022-03-30 18:41:59 +00:00
content="$(getRecipesByUsername "$username" | template "templates/backend.fragment.templ")"
template "templates/layout.html.templ"
}