mirror of
https://github.com/sigmasternchen/kukkubukku
synced 2025-03-15 23:38:53 +00:00
12 lines
210 B
Bash
12 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"
|
||
|
}
|