templates/front/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layouts/default.html.twig' %}
  2. {% block title %} {{ 'app.home.title'|trans }} {{ parent() }} {% endblock %}
  3. {% block breadcrumb %}
  4.     <!-- Start Main Slider -->
  5.     {{ render(controller('App\\Controller\\Front\\HomeController::slides')) }}
  6.     <!-- End Main Slider -->
  7. {% endblock %}
  8. {% block body %}
  9.     <!--Start About Style1 Area-->
  10.     {% include 'front/includes/about_section.html.twig' with {'class': ''} %}
  11.     <!--End About Style1 Area-->
  12.     <!-- Start 6 Plans Area -->
  13.     {% include 'front/includes/plans.html.twig' with {'bg': true} %}
  14.     <!-- End 6 Plans Area -->
  15.     <!-- Start 6 gallery products Area -->
  16.     {{ render(controller('App\\Controller\\Front\\GalleryController::homePortfolio')) }}
  17.     <!-- End 6 gallery products Area -->
  18.     <!--Start service Area-->
  19.     {% include 'front/service/list.html.twig' with {'pagination': false} %}
  20.     <!--End service Area-->
  21.     <!--Start Testimonial style1 Area-->
  22.     {{ render(controller('App\\Controller\\Front\\HomeController::testimonials')) }}
  23.     <!--End Testimonial Style1 Area--> 
  24.     <!--Start latest blog area -->
  25.     <section class="latest-blog-area">
  26.         <div class="container">
  27.             <div class="sec-title text-center">
  28.                 <div class="big-title"><h2>{{ 'app.blog.recent_news_and_posts'|trans }}</h2></div>
  29.                 <div class="border-box">
  30.                     <span class="linetop"></span>
  31.                     <span class="linebottom"></span>
  32.                 </div>
  33.             </div>
  34.             <div class="row">
  35.                 <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12">
  36.                     <div class="theme-carousel blog-carousel owl-carousel owl-theme owl-dot-style1" data-options='{"loop":true, "margin":30, "autoheight":true, "nav":false, "dots":true, "autoplay":true, "autoplayTimeout":6000, "smartSpeed":500, "responsive":{ "0":{"items": "1"}, "768":{"items": "2"}, "1199":{"items": "3" }}}'>
  37.                         <!--Start single blog post-->
  38.                         {{ render(controller('App\\Controller\\Front\\BlogController::recent')) }}
  39.                         <!--End single blog post-->
  40.                     </div>
  41.                 </div>
  42.             </div>
  43.         </div>
  44.     </section>
  45.     <!--End latest blog area-->
  46. {% endblock %}