package views import "git.32bit.cafe/32bitcafe/guestbook/internal/models" import "strconv" type CommonData struct { CurrentYear int Flash string IsAuthenticated bool CSRFToken string CurrentUser *models.User IsHtmx bool } func shortIdToSlug(shortId uint64) string { return strconv.FormatUint(shortId, 36) } func slugToShortId(slug string) uint64 { id, _ := strconv.ParseUint(slug, 36, 64) return id } templ commonHeader() {

webweav.ing

} templ topNav(data CommonData) { } templ commonFooter() { } templ base(title string, data CommonData) { { title } - webweav.ing @commonHeader() @topNav(data)
if data.Flash != "" {
{ data.Flash }
} { children... }
@commonFooter() }