hugo-cms/models/theme.go
2025-02-02 09:54:30 +11:00

14 lines
271 B
Go

package models
type ThemeMeta struct {
ID string `json:"id"`
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"`
}