{% extends 'base.html.twig' %} {% block title %}BuyFree.cz{% endblock %} {% block body %}
{# left sidebar #}
{% include('frontend/home/partials/sidebar.html.twig') with {'categories': categories} %}
{# right content #}
{# jumbotron #} {% include('frontend/home/partials/jumbotron.html.twig') %}
{# page-content #}
{# recommended products #}

Doporučujeme zboží

Zobrazit vše
{% include('frontend/home/partials/products-grid.html.twig') with {'products': recommendedProducts} %} {# new products #}

Nové zboží

Zobrazit vše
{% include 'frontend/home/partials/products-grid.html.twig' with {'products': lastProducts} %} {# current auctions #}

Probíhající aukce

Zobrazit vše
{% include('frontend/home/partials/auctions-grid.html.twig') with {'auctions': auctions} %}
{% endblock %}