hugo-cms/providers/themes/meta.go

47 lines
1.2 KiB
Go
Raw Normal View History

2025-01-26 22:26:15 +00:00
package themes
2025-03-29 23:39:02 +00:00
import (
"lmika.dev/lmika/hugo-cms/models"
"lmika.dev/lmika/hugo-cms/providers/themes/overlays"
)
2025-01-26 22:26:15 +00:00
2025-02-01 22:54:30 +00:00
var themes = []models.ThemeMeta{
{
2025-03-30 00:15:46 +00:00
ID: "bear",
Name: "Bear",
URL: "https://github.com/janraasch/hugo-bearblog",
Options: []models.ThemeOption{
{
Name: "homepage_post_limit",
Label: "Homepage Post Limit",
Description: "Number of links to post on homepage",
Type: models.ThemeOptionTypeInt,
DefaultValue: "30",
},
},
2025-03-29 23:39:02 +00:00
OverlayFS: overlays.HugoBearblogFS,
Overlays: map[string]string{
"hugo-bearblog/archetype-posts.md": "archetypes/posts.md",
"hugo-bearblog/index.html": "layouts/index.html",
"hugo-bearblog/partials-nav.html": "layouts/partials/nav.html",
},
2025-02-16 00:43:22 +00:00
PreferTitle: true,
2025-03-29 23:39:02 +00:00
BlogPostBundle: "posts",
2025-01-26 22:26:15 +00:00
},
2025-02-01 22:54:30 +00:00
{
2025-02-16 00:43:22 +00:00
ID: "terminal",
Name: "Terminal",
URL: "https://github.com/panr/hugo-theme-terminal",
PreferTitle: true,
BlogPostBundle: "posts",
2025-02-01 22:54:30 +00:00
},
{
2025-02-16 00:43:22 +00:00
ID: "yingyang",
Name: "Yingyang",
URL: "https://github.com/joway/hugo-theme-yinyang",
PreferTitle: true,
BlogPostBundle: "posts",
2025-02-01 22:54:30 +00:00
},
2025-01-26 22:26:15 +00:00
}