diff options
| author | 2026-03-29 02:05:06 +0700 | |
|---|---|---|
| committer | 2026-03-29 02:05:06 +0700 | |
| commit | 0a9de353b2456505b0b8214fab4a7c844d31735c (patch) | |
| tree | ae130f4617bab4b05f13521b1e701cd88f48d69f /locale/localization.go | |
| parent | 610341bc9d59f9724e8e71f663b28df1904cb038 (diff) | |
| download | web-0a9de353b2456505b0b8214fab4a7c844d31735c.tar.gz web-0a9de353b2456505b0b8214fab4a7c844d31735c.zip | |
fix: add page metadata correctly
feat: link marker fill saturation and brightness in the global map to the publication date
Diffstat (limited to 'locale/localization.go')
| -rw-r--r-- | locale/localization.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/locale/localization.go b/locale/localization.go index c6467c4..a4f36f1 100644 --- a/locale/localization.go +++ b/locale/localization.go @@ -20,6 +20,7 @@ type LocaleConfig struct { type BlogSearchConfig struct { Header string `yaml:"Header" json:"Header"` + Description string `yaml:"Description" json:"Description"` TagsHeader string `yaml:"TagsHeader" json:"TagsHeader"` OrderByHeader string `yaml:"OrderByHeader" json:"OrderByHeader"` TitleOrdered string `yaml:"TitleOrdered" json:"TitleOrdered"` @@ -29,7 +30,8 @@ type BlogSearchConfig struct { } type GlobalMapConfig struct { - Header string `yaml:"Header" json:"Header"` + Header string `yaml:"Header" json:"Header"` + Description string `yaml:"Description" json:"Description"` } type HomePageConfig struct { |