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/seo.go

22 lines
391 B
Go

package property
import "reflect"
var SeoKeywords = Property{
KeyValue: "seo_keywords",
DefaultValue: "",
Kind: reflect.String,
}
var SeoDescription = Property{
KeyValue: "seo_description",
DefaultValue: "",
Kind: reflect.String,
}
var SeoSpiderDisabled = Property{
KeyValue: "seo_spider_disabled",
DefaultValue: false,
Kind: reflect.Bool,
}