Files
b1tsblog/internal/article/model.go
jbergner c88cf623f0
All checks were successful
release-tag / release-image (push) Successful in 2m6s
Meta Description Bugfix #2
2025-05-05 21:21:57 +02:00

23 lines
326 B
Go

// internal/article/model.go
package article
import (
"html/template"
"time"
)
type Article struct {
Title string
Slug string
Date time.Time
Cover string
Body template.HTML
Description string
}
type ListPage struct {
Title string
Description string
Articles []Article
}