{# templates/layout/json_mots_cles.html.twig #}
{% if data_json is not empty %}
{% for item in data_json %}
,{
"@context" : "http://schema.org",
"@type" : "Review",
"itemReviewed" : {
"@type" : "Organization",
"name" : "{{ item.name|raw }}"
},
"name" : "{{ item.name|raw }}",
"image" : "https://www.cleanolia.fr{{ asset('assets/jpg/' ~ image) }}",
"reviewRating" : {
"@type" : "aggregateRating",
"ratingValue" : "{{ rating_value }}",
"bestRating" : "5",
"ratingCount" : "{{ rating_count }}"
},
"author" : {
"@type" : "Organization",
"name" : "Cleanolia France"
}
}
{% endfor %}
{% endif %}
{% if mots_cles_json is not empty %}
{% for item in mots_cles_json %}
,{
"@context" : "http://schema.org",
"@type" : "Review",
"itemReviewed" : {
"@type" : "Organization",
"name" : "{{ item.tag|raw }}"
},
"name" : "{{ item.tag|raw }}",
"image" : "https://www.cleanolia.fr{{ asset('assets/jpg/' ~ image) }}",
"reviewRating" : {
"@type" : "aggregateRating",
"ratingValue" : "{{ rating_value }}",
"bestRating" : "5",
"ratingCount" : "{{ rating_count }}"
},
"author" : {
"@type" : "Organization",
"name" : "Cleanolia France"
}
}
{% endfor %}
{% endif %}