houdini/app/views/nonprofits/_schema.html.erb
2020-06-15 10:26:57 -05:00

21 lines
652 B
Text

<%- # 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 -%>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "<%= npo.name %>",
"description": "<%= npo.tagline %>",
"address": {
"@type": "PostalAddress",
"streetAddress": "<%= npo.address %>",
"addressLocality": "<%= npo.city %>",
"addressRegion": "<%= npo.state_code %>",
"postalCode": "<%= npo.zip_code %>"
},
"url": "<%= npo.website %>",
"telephone": "<%= npo.phone %>",
"email": "<%= npo.email %>"
}
</script>