28 lines
393 B
Go
28 lines
393 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Site struct {
|
|
Meta SiteMeta
|
|
Posts []*Post
|
|
}
|
|
|
|
type SiteMeta struct {
|
|
Title string
|
|
Tagline string
|
|
BaseURL string
|
|
}
|
|
|
|
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
|
|
}
|