slash roleypoly yay

This commit is contained in:
41666 2025-03-26 16:36:00 -07:00
parent 02f5075d3b
commit 607d7e121c
22 changed files with 394 additions and 66 deletions

View file

@ -12,3 +12,11 @@ func HeadTitle(text string) string {
func J(parts ...string) string {
return "/" + strings.Join(parts, "/")
}
func Or(input, fallback string) string {
if input == "" {
return fallback
}
return input
}