package templates import "time" func FormatLastUpdated(t time.Time) string { updatedAt := "Now-ish" if !t.IsZero() { updatedAt = t.Format("January 2, 2006") } return updatedAt } templ Footer(lastUpdated time.Time) { }