{% extends 'GergelyPolonkaiFrontBundle:Default:front_base.html.twig' %} {% block title %} - Blog{% endblock %} {% block paginator %} {% if count > 1 %}
{% if cpage > 0 %} First {% endif %} {% if cpage > 1 %} Previous {% endif %} {% for i in 1..count %} {% if cpage != i - 1 %}{% endif %}{{ i }}{% if cpage != i - 1 %} {% else %} {% endif %} {% endfor %} {% if cpage < count - 2 %} Next {% endif %} {% if cpage < count - 1 %} Last {% endif %}
{% endif %} {% endblock paginator %} {% block content %} {{ block('paginator') }} {% for post in posts %} {% include 'GergelyPolonkaiFrontBundle:Blog:postViewer.html.twig' with {'post': post, 'title_links': true} %} {% endfor %} {{ block('paginator') }} {% endblock content %}