### Fonctionnalités

#### Nouvelle variable `page.paginator.links.path`

La variable _paginator_ `page.paginator.links.path` renvoie l'ID de page sans index de position.

_Exemple:_

```twig
{% if page.paginator %}
<div>
  {% for paginator_index in 1..page.paginator.count %}
    {# not the current page: URL #}
    {% if paginator_index != page.paginator.current %}
      {# the first page #}
      {% if paginator_index == 1 %}
  <a href="{{ url(page.paginator.links.first) }}">{{ paginator_index }}</a>
      {% else %}
  <a href="{{ url(page.paginator.links.path ~ '/' ~ paginator_index) }}">{{ paginator_index }}</a>
      {% endif %}
    {# the current page: not URL #}
    {% else %}
  {{ paginator_index }}
    {% endif %}
  {% endfor %}
</div>
{% endif %}
```

[Documentation →](/documentation/templates/#page-paginator)

### Réparer

- Correction de l'actif favicon des balises méta
- Correction de l'option de commande `clear-cache`
- Correction du mode de débogage de la console
- Correction du logo dans le modèle JSON-LD
- Correction des modèles JSON
- Balise `<script>` ajoutée au script de rechargement en direct (par [@ahnlak](https://github.com/ahnlak))

### Divers

- Dépendances mises à jour
- Utilisez la directive Composer `dump-autoloader` pour de meilleures performances
- Messages enregistrés par étapes améliorés
