hugo-cms/models/theme.go

17 lines
366 B
Go
Raw Normal View History

2025-01-27 09:26:15 +11:00
package models
type ThemeMeta struct {
2025-02-02 09:54:30 +11:00
ID string `json:"id"`
2025-01-27 09:26:15 +11:00
Name string `json:"name"`
URL string `json:"repo"`
2025-01-27 14:23:54 +11: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 11:43:22 +11:00
// Page bundle for "blog" posts
BlogPostBundle string `json:"post_dir"`
2025-01-27 09:26:15 +11:00
}