17 lines
613 B
Go
17 lines
613 B
Go
package model
|
|
|
|
// Settings represents the site-wide configuration stored in config/settings.json.
|
|
type Settings struct {
|
|
SiteName string `json:"网站名字"`
|
|
SiteDesc string `json:"网站描述"`
|
|
Author string `json:"站长"`
|
|
ContactEmail string `json:"联系邮箱"`
|
|
ThemeColor string `json:"主题颜色"`
|
|
PageSize int `json:"每页作品数量"`
|
|
EnableSearch bool `json:"启用搜索"`
|
|
EnableCategory bool `json:"启用分类"`
|
|
Icp string `json:"备案号"`
|
|
Footer string `json:"网站页尾"`
|
|
Logo string `json:"网站logo"`
|
|
}
|