hugo-cms/models/theme.go

13 lines
246 B
Go

package models
type ThemeMeta struct {
Name string `json:"name"`
URL string `json:"repo"`
// Indicates that this theme prefers posts have titles.
PreferTitle bool
// Content directory for "blog" posts
PostDir string `json:"post_dir"`
}