{% extends 'base.html.twig' %} {% block title %}{{ 'blog.page_title'|trans({}, 'Blog') }}{% endblock %} {% block metaKeywords %}{{ 'blog.meta_keywords'|trans({}, 'Blog') }}{% endblock %} {% block metaDescription %}{{ 'blog.meta_description'|trans({}, 'Blog') }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

{{ 'blog.title'|trans({}, 'Blog') }}

{{ 'blog.subtitle'|trans({}, 'Blog') }}

{% if posts|length > 0 %}
{% for post in posts %} {% endfor %}
{% if totalPages > 1 %}
{% if currentPage > 1 %} {% endif %} {% for i in 1..totalPages %} {% if i == currentPage %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if currentPage < totalPages %} {% endif %}
{% endif %} {% else %}

{{ 'blog.no_posts'|trans({}, 'Blog') }}

{% endif %}
{% endblock %}