templates/bundles/ElementsJsonLdReloadedBundle/_generated/Product-5.html.twig line 1

Open in your IDE?
  1. {% extends '@ElementsJsonLdReloaded/jsonld/base.html.twig' %}
  2. {% block jsonLd %}
  3.     "name": "{{object.title}}",
  4. {% if object.imageGallery and object.imageGallery[0] %}
  5.     "image": "{{jld_imageUrl(object.imageGallery[0])}}",
  6. {% endif %}
  7. "description": "{{ jld_escape_string(jld_escape_string(object.description), ['
  8. ', '
  9. ', '    '], ['', '', ''])   }}",
  10. "productId":"{{object.productId}}",
  11. "category": "{{object.category.title}}",
  12. "url": "{{jld_url(object)}}",
  13. "brand":{
  14.     "@type": "Brand",
  15.     "name": "{{object.internalBrand}}"
  16. }
  17. {% endblock %}