hugo-cms/models/theme.go

13 lines
246 B
Go
Raw Normal View History

2025-01-26 22:26:15 +00:00
package models
type ThemeMeta struct {
Name string `json:"name"`
URL string `json:"repo"`
2025-01-27 03:23:54 +00:00
// Indicates that this theme prefers posts have titles.
PreferTitle bool
// Content directory for "blog" posts
PostDir string `json:"post_dir"`
2025-01-26 22:26:15 +00:00
}