Files
e-cosplay/templates/home.twig
2025-11-16 19:41:07 +01:00

24 lines
582 B
Twig

{% extends 'base.twig' %}
{% block canonical_url %}<link rel="canonical" href="{{ url('app_home') }}" />
{% endblock %}
{% block breadcrumb_schema %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "{{ app.request.schemeAndHttpHost }}"
}
]
}
</script>
{% endblock %}
{% block body %}
{# Contenu de la page #}
{% endblock %}