{% extends "/layout/base.html" %} {% from "/macros/sliders/slider.html" import slider %} {% from "/macros/sliders/bundle.html" import bundleSlider %} {% from "/macros/sliders/hero.html" import hero %} {% from "/macros/navigator.html" import navigator %} {% from "/macros/home-faq.html" import homeFaq %} {% from "/macros/sliders/script.html" import sliderScript %} {% block data %} {% endblock %} {% block content %}
{{ navigator(nav.primary) }}
{{ hero(productLists.customLists.hero.products, i18n) }}
{% if productLists.featuredapps.items.length %}
{{ slider(productLists.featuredapps.name, productLists.featuredapps.items, i18n, productLists.featuredapps.url ) }}
{% endif %} {% if productLists.customLists.core.products.length %}
{{ slider(productLists.customLists.core.name, productLists.customLists.core.products, i18n, productLists.customLists.core.url) }}
{% endif %} {% if productLists.customLists.mobile.products.length %}
{{ slider(productLists.customLists.mobile.name, productLists.customLists.mobile.products, i18n, productLists.customLists.mobile.url) }}
{% endif %} {% if productLists.bundlesList.items.length %}
{{ bundleSlider(productLists.bundlesList.name, productLists.bundlesList.items, i18n, productLists.bundlesList.url) }}
{% endif %} {% if productLists.popularapps.items.length %}
{{ slider(productLists.popularapps.name, productLists.popularapps.items, i18n, productLists.popularapps.url) }}
{% endif %}
{{ homeFaq(common.faq.items[0], common.faq.i18n, common.faq.pageUrl) }}
{{ sliderScript() }} {% endblock %}