templates/bundles/ElementsJsonLdReloadedBundle/_generated/Location-3.html.twig line 1

Open in your IDE?
  1. {% extends '@ElementsJsonLdReloaded/jsonld/base.html.twig' %}
  2. {% block jsonLd %}
  3.     "address":{
  4.     "@type": "PostalAddress",
  5.     "streetAddress": "{{ object.street }}",
  6.     "addressLocality": "{{ object.city }}",
  7.     "postalCode": "{{ object.zip }}",
  8.     "addressCountry": "{{ object.config[0].country }}"
  9. },
  10. "name": "{{ object.name|jld_sanitize }}",
  11. {% if object.seoDescription %}
  12. "description": "{{ jld_escape_string(jld_escape_string(object.seoDescription), ['
  13. ', '
  14. ', '    '], ['', '', ''])   }}",
  15. {% endif %}
  16. "telephone": "{{ object.phone }}",
  17. "fax": "{{ object.fax }}",
  18. "email": "{{ object.email }}",
  19. "image": "{{jld_imageUrl(object.image)}}",
  20. "url": "{{jld_url(object)}}",
  21. "resorts": "HomeAndConstructionBusiness",
  22. "geo": {{ jld_geo(object.getGeo()) }}, 
  23. "openingHours": "{{ object.openingTimes|jld_sanitize }}"
  24. {% endblock %}