mirror of
https://github.com/sigmasternchen/kukkubukku
synced 2025-03-15 15:28:54 +00:00
11 lines
210 B
Bash
11 lines
210 B
Bash
#!/bin/bash
|
|
|
|
route GET "/backend" backendHome
|
|
backendHome() {
|
|
requireLoggedIn
|
|
endHeaders
|
|
|
|
title="Backend"
|
|
content="$(template "templates/backend.fragment.templ")"
|
|
template "templates/layout.html.templ"
|
|
}
|