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
|
|
|
|
|
2025-02-17 10:41:36 +00:00
|
|
|
// 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
|
|
|
}
|