21 lines
259 B
Go
21 lines
259 B
Go
![]() |
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
|
||
|
}
|