Template
1
0
Fork 0
goth.stack/lib/links.go

27 lines
336 B
Go
Raw Normal View History

2023-05-18 20:04:55 -06:00
package lib
import (
"html/template"
)
type IconLink struct {
Name string
Href string
Icon template.HTML
}
type CardLink struct {
Name string
Href string
Description string
Date string
Tags []string
Internal bool
}
2024-04-12 11:31:41 -06:00
type ButtonLink struct {
Name string
Href string
Internal bool
}