mirror of https://github.com/go-sonic/sonic.git
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.
22 lines
391 B
Go
22 lines
391 B
Go
2 years ago
|
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,
|
||
|
}
|