Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View maxpou's full-sized avatar
🌏
remote

Maxence Poutord maxpou

🌏
remote
View GitHub Profile
@maxpou
maxpou / _pagination.html.twig
Last active February 26, 2023 20:28
Example of pagination with Twig
{#
Parameters:
* nbPages (int): number of pages
* currentPage (int): current pages
* url (string): route name & query (string): route parameter
ex: list/page-5?q=myFilter (5 = page and query = myFilter)
#}
{% spaceless %}
{% if nbPages > 1 %}