houdini/app/views/campaigns/_schema.html.erb

28 lines
719 B
Text
Raw Normal View History

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