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{
|
|
|
|
{
|
2025-02-16 00:43:22 +00:00
|
|
|
ID: "bear",
|
|
|
|
Name: "Bear",
|
|
|
|
URL: "https://github.com/janraasch/hugo-bearblog",
|
|
|
|
PreferTitle: true,
|
|
|
|
BlogPostBundle: "blog",
|
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
|
|
|
}
|