You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sonic/model/property/blog.go

37 lines
705 B
Go

package property
import "reflect"
var (
BlogLocale = Property{
KeyValue: "blog_locale",
DefaultValue: "zh",
Kind: reflect.String,
}
BlogTitle = Property{
KeyValue: "blog_title",
DefaultValue: "",
Kind: reflect.String,
}
BlogLogo = Property{
KeyValue: "blog_logo",
DefaultValue: "",
Kind: reflect.String,
}
BlogUrl = Property{
KeyValue: "blog_url",
DefaultValue: "",
Kind: reflect.String,
}
BlogFavicon = Property{
KeyValue: "blog_favicon",
DefaultValue: "",
Kind: reflect.String,
}
BlogFooterInfo = Property{
KeyValue: "blog_footer_info",
DefaultValue: "",
Kind: reflect.String,
}
)