hugo-cms/models/theme.go

17 lines
366 B
Go
Raw Normal View History

2025-01-26 22:26:15 +00:00
package models
type ThemeMeta struct {
2025-02-01 22:54:30 +00:00
ID string `json:"id"`
2025-01-26 22:26:15 +00:00
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
// Indicates that the theme doesn't automatically put titles on pages
AddTitleToPages bool
2025-02-16 00:43:22 +00:00
// Page bundle for "blog" posts
BlogPostBundle string `json:"post_dir"`
2025-01-26 22:26:15 +00:00
}