weiro/models/sites.go

28 lines
443 B
Go
Raw Normal View History

2026-02-18 11:07:18 +00:00
package models
import "time"
type Site struct {
Meta SiteMeta
Posts []*Post
}
type SiteMeta struct {
Title string `yaml:"title"`
Tagline string `yaml:"tagline"`
BaseURL string `yaml:"base_url"`
2026-02-18 11:07:18 +00:00
}
type PostMeta struct {
ID string `yaml:"id"`
Title string `yaml:"title"`
Date time.Time `yaml:"date"`
Tags []string `yaml:"tags"`
Slug string `yaml:"slug"`
}
type Post struct {
Meta PostMeta
Content string
}