30 lines
763 B
Plaintext
30 lines
763 B
Plaintext
{
|
|
"@context": "http://www.schema.org",
|
|
"@type": "Event",
|
|
"name": "{{ .Title }}",
|
|
"url": "http://www.example.com/launch-party",
|
|
{{- with .Description -}}
|
|
"description": "{{ . }}",
|
|
{{- end -}}
|
|
"startDate": {{ .Params.startDate }}",
|
|
"endDate": {{ .Params.endDate }}",
|
|
"location": {
|
|
"@type": "Place",
|
|
"name": "Joe's Party Palace",
|
|
"sameAs": "http://www.example.com",
|
|
"address": {
|
|
"@type": "PostalAddress",
|
|
"streetAddress": "100 Main Street",
|
|
"addressLocality": "Seattle",
|
|
"addressRegion": "WA",
|
|
"postalCode": "98101",
|
|
"addressCountry": "USA"
|
|
}
|
|
},
|
|
"offers": {
|
|
"@type": "Offer",
|
|
"description": "an offer description",
|
|
"url": "http://www.example.com",
|
|
"price": "$9.99"
|
|
}
|
|
} |