Files
dr_who_website/templates/medias.html.twig
2023-01-06 17:00:19 +01:00

19 lines
480 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Acceuil{% endblock %}
{% block body %}
<body>
{% include "header.html.twig" %}
<nav aria-label="breadcrumb">
{% set current_path = "" %}
<ul>
{% for item in path|split(pat="/") %}
{% set current_path = current_path ~ "/" ~ item %}
<li><a href="/medias?q={{current_path}}">{{item}}</a></li>
{% endfor %}
</ul>
</nav>
{% include "footer.html.twig"%}
</body>
{% endblock %}