new: Added new tab pages and related modules

This commit is contained in:
2024-12-16 17:19:06 +08:00
parent 65e5e9eafc
commit 54f2b2e648
14 changed files with 1615 additions and 10 deletions

View File

@@ -4,6 +4,7 @@ type mPost struct {
TocTitle string `yaml:"toc_title"`
RecentPost mRecentPost `yaml:"recent_post"`
Archive mArchive `yaml:"archive"`
Tag mTag `yaml:"tag"`
}
type mRecentPost struct {
@@ -15,3 +16,7 @@ type mArchive struct {
Title string `yaml:"title"`
Number int `yaml:"number"`
}
type mTag struct {
Number int `yaml:"number"`
}