new: Complete modules related to home page, archive page and article page

This commit is contained in:
yv1ing
2024-12-16 14:13:58 +08:00
parent 08a3d4c8b5
commit c8fd4e9f2b
49 changed files with 1547 additions and 1 deletions

11
config/mMenu.go Normal file
View File

@@ -0,0 +1,11 @@
package config
type mMenu struct {
Items []mItem `yaml:"items"`
}
type mItem struct {
Name string `yaml:"name"`
Icon string `yaml:"icon"`
Url string `yaml:"url"`
}