feat: Adds more navigation items to sidebar and removes top navigation bar.
All checks were successful
CI / release (push) Successful in 6m53s

This commit is contained in:
2025-04-16 09:16:24 -04:00
parent e9c1dfa2e5
commit c0a8e3ced8
8 changed files with 60 additions and 38 deletions

View File

@@ -103,6 +103,11 @@ func renderArticle(context: ItemRenderingContext<ArticleMetadata>) -> Node {
extraHeader: generateHeader(.article(context.item))
) {
article(class: "pt-8 mx-10") {
div(class: "relative") {
a(class: "absolute top-4 right-4", href: "/articles", id: "close") {
i(customAttributes: ["data-lucide": "x"])
}
}
div(class: "bg-slate-800 py-10") {
div(class: "mx-10") {
h1 { context.item.title }