Updates from my site

This commit is contained in:
2024-02-06 11:03:53 -07:00
parent bfc56fffcf
commit a450b648d5
12 changed files with 280 additions and 159 deletions

22
lib/links.go Normal file
View File

@ -0,0 +1,22 @@
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
}