27 lines
719 B
Text
27 lines
719 B
Text
<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
|
|
|
|
<% schema = {
|
|
"@context": "http://schema.org",
|
|
"@type": "Event",
|
|
"name": @campaign.name ,
|
|
"description": @campaign.summary.present? ? @campaign.summary : @campaign.name ,
|
|
"url": url ,
|
|
"location": {
|
|
"@type": "Place",
|
|
"name": @campaign.name ,
|
|
"address": {
|
|
"@type": "PostalAddress",
|
|
"addressLocality": @nonprofit.city,
|
|
"addressRegion": @nonprofit.state_code,
|
|
"postalCode": @nonprofit.zip_code ,
|
|
"streetAddress": @nonprofit.address
|
|
}
|
|
},
|
|
"startDate": @campaign.created_at
|
|
}
|
|
%>
|
|
|
|
<script type="application/ld+json">
|
|
<%= raw(JSON::generate(schema)) %>
|
|
</script>
|
|
|