first commit

This commit is contained in:
Blake Ridgway
2026-03-07 21:16:51 -06:00
parent 21bd542469
commit 03fcf37beb
33 changed files with 3532 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package handler
import (
"strings"
"time"
)
func formatDate(t time.Time) string {
if t.IsZero() {
return ""
}
return t.Format("2 January 2006")
}
func joinTags(tags []string) string {
return strings.Join(tags, ", ")
}