templates/bundles/SyliusShopBundle/Homepage/index.html.twig line 1

Open in your IDE?
  1. {% extends '@SyliusShop/layout.html.twig' %}
  2. {% block content %}
  3. <div class="container-fluid">
  4. <h1 class="ui header center aligned">
  5. <div class="content">
  6. {{ 'Index title'|trans }}
  7. <div class="sub header">
  8. {{ 'Index subtitle'|trans }}
  9. </div>
  10. </div>
  11. </h1>
  12. <div class="ui secondary segment">
  13. {{ bitbag_cms_render_block('home_presentation_texte') }}
  14. </div>
  15. <h3 class=".text-secondary">{{ 'Donation title'|trans }}</h3>
  16. <div class ="ui middle aligned two column grid">
  17. <div class="ui middle aligned four wide computer six wide tablet height wide mobile column">
  18. {{ include('page_generator/paypaldonate.html.twig') }}
  19. </div>
  20. <div class="ui left aligned text-info twelve wide computer ten wide tablet sixteen wide mobile column">
  21. {{ bitbag_cms_render_block('Donation_Text_homepage') }}
  22. </div>
  23. </div>
  24. {% include 'page_generator/download.html.twig' %}
  25. {#
  26. <h2 class="ui horizontal section divider header">
  27. {{ 'sylius.ui.latest_products'|trans }}
  28. </h2>
  29. {{ render(url('sylius_shop_partial_product_index_latest', {'count': 4, 'template': '@SyliusShop/Product/_horizontalList.html.twig'})) }}
  30. #}
  31. </div>
  32. {% endblock %}