{% set header_title = 'News' %} {% set background_top = 'assets/images/bg-top-5.png' %} {% set breadcrumbs = [ 'Home', 'News' ] %} {% extends 'layouts/layout-1.html' %} {% macro tabs_news(first, next, category) %} {% if first >= 0 %}
{{ posts[first].title }} {% if category %} {{ category | safe }} {% endif %}

{{ posts[first].title }}

{{ posts[first].date }} {{ posts[first].comments_count }} comments
{{ posts[first].excerpt | safe }}
{% endif %} {% if next %} {% for next_item in next %}

{{ posts[next_item].title }}

{{ posts[next_item].excerpt | safe }}
{% endfor %} {% endif %} {% endmacro %} {% block content %}
{{ tabs_news(1, [6, 8], 'Action') }}
{{ tabs_news(0, [4], 'MMO') }}
{{ tabs_news(2, [3], 'Strategy') }}
{{ tabs_news(5, false, 'Adventure') }}
{{ tabs_news(6, [2, 3], 'Racing') }}
{{ tabs_news(4, false, 'Indie') }}
{% for post in posts %} {% endfor %}
{% endblock %}