24 lines
582 B
Twig
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 %}
|