2022-11-28 04:33:45 +00:00
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "LocalBusiness",
|
|
|
|
"name": "{{ name }}",
|
2022-11-28 04:36:02 +00:00
|
|
|
{%- if email -%}"email": "{{ email }}",{%- endif -%}
|
|
|
|
{%- if phone -%}"telephone": "{{ phone }}",{%- endif -%}
|
|
|
|
{%- if web -%}"url": "{{ web }}",{%- endif -%}
|
2024-04-14 22:13:53 +00:00
|
|
|
{%- if facebook or instagram -%} "sameAs": [
|
2022-12-10 12:23:48 +00:00
|
|
|
{%- if facebook -%}"{{ facebook }}"{%- endif -%}
|
|
|
|
{%- if facebook and instagram -%},{%- endif -%}
|
|
|
|
{%- if instagram -%}"{{ instagram }}"{%- endif -%}
|
2022-11-28 04:36:02 +00:00
|
|
|
],{%- endif -%}
|
2022-12-10 12:23:48 +00:00
|
|
|
{%- if google -%}"hasMap": "{{ google }}"{%- endif -%}
|
|
|
|
{%- if address -%}
|
|
|
|
, "address": {
|
|
|
|
"@type": "PostalAddress",
|
|
|
|
"streetAddress": "{{ address}}",
|
|
|
|
"addressLocality": "Prestwich",
|
|
|
|
"addressRegion": "Manchester",
|
|
|
|
"postalCode": "{{ postcode }}"
|
|
|
|
}
|
|
|
|
{%- endif -%}
|
2022-11-28 04:33:45 +00:00
|
|
|
}
|
2022-12-10 12:23:48 +00:00
|
|
|
</script>
|