templates/main/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.   <!-- ======= Header ======= -->
  4.   <header id="header" class="fixed-top">
  5.     <div class="container d-flex align-items-center justify-content-between">
  6.       <h1 class="logo"><a href="/"> <img loading="lazy"  src="assets/img/abintech-logo.png" class="img-fluid mx-2" alt="">НУЦ "АБИНТЕХ"</a></h1>
  7.       <!-- Uncomment below if you prefer to use an image logo -->
  8.       <!-- <a href="index.html" class="logo"><img loading="lazy"  src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
  9.      {% include 'section/navigation.html.twig' %}
  10.     </div>
  11.   </header><!-- End Header -->
  12.   <div class="alert alert-success fixed-top mx-auto mt-3 d-none" id="response-alert" role="alert"></div>
  13.     
  14.   <!-- ======= mblk Section ======= -->
  15.   {% include 'section/mblk.html.twig' %}
  16.  
  17. <main id="main">
  18. <!-- ======= Course Section ======= -->
  19. {% include 'section/course.html.twig' %}
  20. <!-- ======= About Video Section ======= -->
  21. {% include 'section/video.html.twig' %}    
  22. <!-- ======= Services Section ======= -->
  23. {% include 'section/services.html.twig' %}    
  24. <!-- Start Steps Section -->
  25. {% include 'section/steps.html.twig' %}    
  26. <!-- ======= Cta Section ======= -->
  27. {% include 'section/cta.html.twig' %}   
  28.  <!-- ======= About Section ======= -->
  29. {% include 'section/about.html.twig' %} 
  30.     <!-- ======= Teachers Section ======= -->
  31. {% include 'section/teachers.html.twig' %}    
  32.     <!-- ======= Pricing Section ======= -->
  33. {% include 'section/pricing.html.twig' %}    
  34.     <!-- ======= Frequently Asked Questions Section ======= -->
  35. {% include 'section/faq.html.twig' %}    
  36.     <!-- ======= Contact Section ======= -->
  37. {% include 'section/contact.html.twig' %}    
  38.   </main><!-- End #main -->  
  39. {% include 'forms/modal.html.twig' %}  
  40. <!-- Modal FormФорма обратной связи в модальном окне -->
  41.   <div id="preloader"></div>
  42.   <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="icon-rounded-up"></i></a>
  43. {% endblock %}