{% extends "eZDemoBundle::pagelayout.html.twig" %} {% block content %}
{% if pagerBlog|length() > 0 %}
{% for post in pagerBlog %} {# Displaying blog_post elements calling the view line #} {{ render_esi( controller( 'ez_content:viewLocation', {'locationId': post.contentInfo.mainLocationId, 'viewType': 'line'} ) ) }} {% endfor %}
{# Pagination is displayed only if needed (number of posts > limit) #} {% if pagerBlog.haveToPaginate() %}
{{ pagerfanta( pagerBlog, 'twitter_bootstrap_translated', {'routeName': location} ) }}
{% endif %} {% endif %}
{% endblock %}