templ generate, add markdown syntax highlighting, fix stuff

This commit is contained in:
2025-08-17 14:15:46 +00:00
parent 59d82ae563
commit 749d68cdeb
23 changed files with 1106 additions and 135 deletions

14
templates/pages.templ Normal file
View File

@@ -0,0 +1,14 @@
package templates
import "git.valxntine.dev/valxntine/blog/models"
templ PostPageFull(post models.Post) {
@Layout(post.Title + " - ~/valxntine/blog") {
@Header("~/valxntine/blog", "Thoughts from the Forge")
@Nav()
<main>
@PostDetail(post)
</main>
@Footer()
}
}