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

22 lines
652 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 -%>
<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>