src/StartPlatz/Bundle/AlphaBundle/Resources/views/_infinite.loop.topic.html.twig line 1

Open in your IDE?
  1. {% if maxPages is defined and maxPages > 1 %}
  2.     <div id="pagination">
  3.         <a href="{{ path(currentPath, {'pageType':pageType, page: thisPage, 'topic':topic} ) }}">{{ thisPage }}</a>
  4.         {% if  thisPage != maxPages %}
  5.             <a href="{{ path( currentPath, {'pageType':pageType, page: thisPage+1 <= maxPages ? thisPage+1 : thisPage, 'topic':topic} + templateVars) }}" class="next">ยป</a>
  6.         {% endif %}
  7.     </div>
  8. {% else %}
  9.     {% set maxPages = 100 %}
  10. {% endif %}