hugo-cms/providers/themes/meta.go

13 lines
261 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
var themes = map[string]models.ThemeMeta{
"bear": models.ThemeMeta{
2025-01-27 03:23:54 +00:00
Name: "bear",
URL: "https://github.com/janraasch/hugo-bearblog",
PreferTitle: true,
PostDir: "blog",
2025-01-26 22:26:15 +00:00
},
}