{% if not allBlogs is defined %}
{% set allBlogs = getBlogs({}, app.request) %}
{% endif %}
{% set blogs = allBlogs['blogs'] %}
{% set mainBlog = allBlogs['mainBlog'] %}
{% if blogs|length > 1 %}
{% for i in 0..1 %}
{% set blog = blogs[i] %}
{% include 'components/_blog-item.html.twig' with {blog: blog} %}
{% endfor %}
{% endif %}
{% include 'components/_blog-item.html.twig' with {type:"central", blog: mainBlog} %}
{% if blogs|length > 3 %}
{% for i in 2..3 %}
{% set blog = blogs[i] %}
{% include 'components/_blog-item.html.twig' with {blog: blog} %}
{% endfor %}
{% endif %}