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

29 lines
776 B
Text
Raw Normal View History

2020-06-12 20:03:43 +00:00
<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
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>