{# templates/data_collector/template.html.twig #} {% extends '@WebProfiler/Profiler/layout.html.twig' %} {% block toolbar %} {% set count = collector.structuredData|length %} {% set icon %} {{ count }} {% endset %} {% set text %} {# this is the content displayed when hovering the mouse over the toolbar panel #}
Structured data {{ count }}
{% endset %} {{ include('@WebProfiler/Profiler/toolbar_item.html.twig', { link: count > 0 ? profiler_url : false }) }} {% endblock %} {% block menu %} {% set count = collector.structuredData|length %} Structured data {{ count }} {% endblock %} {% block panel %} {# Optional, for showing the most details. #}

Structured Datas

Documentation & Validator

https://schema.org/docs/documents.html
https://validator.schema.org/

Datas

{% for item in collector.structuredData %} {% endfor %}
{{ item.type }}
{% for label, data in item.json %} {{ label }} : {{ dump(data) }} {% endfor %}
{% endblock %}