feat: Adds pocket id authentication to caddy, adds server management article.
All checks were successful
CI / release (push) Successful in 6m31s

This commit is contained in:
2025-04-11 08:26:51 -04:00
parent f43a191908
commit b986fe41c3
14 changed files with 295 additions and 144 deletions

View File

@@ -21,10 +21,10 @@ func baseLayout(
.documentType("html"),
html(lang: "en-US") {
generateHead(pageTitle, extraHeader)
body(class: "text-white text-lg pb-5 font-avenir \(section.rawValue)") {
body(class: "text-white text-lg font-avenir \(section.rawValue)") {
siteHeader(section)
div(class: "container mb-auto") {
div(class: "mb-auto") {
children()
}
if section == .articles {
@@ -57,9 +57,7 @@ private func siteHeader(_ section: Section) -> Node {
}
}
}
// if section == .home {
div(class: "font-avenir w-full pt-4", id: "search") {}
// }
}
}
}