hugo-cms/providers/themes/meta.go

28 lines
587 B
Go
Raw Normal View History

2025-01-26 22:26:15 +00:00
package themes
2025-01-27 10:48:40 +00:00
import "lmika.dev/lmika/hugo-cms/models"
2025-01-26 22:26:15 +00:00
2025-02-01 22:54:30 +00:00
var themes = []models.ThemeMeta{
{
ID: "bear",
Name: "Bear",
2025-01-27 03:23:54 +00:00
URL: "https://github.com/janraasch/hugo-bearblog",
PreferTitle: true,
PostDir: "blog",
2025-01-26 22:26:15 +00:00
},
2025-02-01 22:54:30 +00:00
{
ID: "terminal",
Name: "Terminal",
URL: "https://github.com/panr/hugo-theme-terminal",
PreferTitle: true,
PostDir: "posts",
},
{
ID: "yingyang",
Name: "Yingyang",
URL: "https://github.com/joway/hugo-theme-yinyang",
PreferTitle: true,
PostDir: "posts",
},
2025-01-26 22:26:15 +00:00
}