28 lines
632 B
Go
28 lines
632 B
Go
package themes
|
|
|
|
import "lmika.dev/lmika/hugo-cms/models"
|
|
|
|
var themes = []models.ThemeMeta{
|
|
{
|
|
ID: "bear",
|
|
Name: "Bear",
|
|
URL: "https://github.com/janraasch/hugo-bearblog",
|
|
PreferTitle: true,
|
|
BlogPostBundle: "blog",
|
|
},
|
|
{
|
|
ID: "terminal",
|
|
Name: "Terminal",
|
|
URL: "https://github.com/panr/hugo-theme-terminal",
|
|
PreferTitle: true,
|
|
BlogPostBundle: "posts",
|
|
},
|
|
{
|
|
ID: "yingyang",
|
|
Name: "Yingyang",
|
|
URL: "https://github.com/joway/hugo-theme-yinyang",
|
|
PreferTitle: true,
|
|
BlogPostBundle: "posts",
|
|
},
|
|
}
|