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

25 lines
855 B
Text
Raw Normal View History

<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Event",
"name": "<%= event.name %>",
"description": "<%= event.tagline %>",
"location": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "<%= event.city %>",
"addressRegion": "<%= event.state_code %>",
"postalCode": "<%= event.zip_code %>",
"streetAddress": "<%= event.address %>"
},
"name": "<%= event.venue_name %>",
"url": "http://maps.google.com/?q=<%= Format::Address.full_address(@event.address, @event.city, @event.state_code, @event.zip_code) %>"
},
"startDate": "<%= Format::Date.full(@event.start_datetime, @event.nonprofit.timezone) %>",
"url": "<%= url %>"
}
</script>