templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base/base.html.twig' %}
  2. {% block title %}{{ 'app.header.title'|trans }}{% endblock %}
  3. {% block stylesheets %}
  4.     <!-- Template Main CSS File -->
  5.     <link href="{{ asset('assets/css/style.css') }}" rel="stylesheet">
  6.     {#  DOAPP ICONS begin  #}
  7.     <link href="{{ asset('assets/doapp/style.css') }}" rel="stylesheet">
  8. {% endblock %}
  9. {% block hero %}
  10.     <section id="hero" class="d-flex align-items-center">
  11.         <div class="container">
  12.             <div class="row">
  13.                 <div class="col-lg-6 pt-5 pt-lg-0 order-2 order-lg-1 d-flex flex-column justify-content-center">
  14.                     <h1 data-aos="fade-up">{{ 'app.hero.h1'|trans }}</h1>
  15.                     <h2 data-aos="fade-up" data-aos-delay="400">{{ 'app.hero.h2'|trans }}</h2>
  16.                     <div data-aos="fade-up" data-aos-delay="800">
  17.                         <a href="#services" class="btn-get-started scrollto">{{ 'app.hero.btn'|trans }}</a>
  18.                     </div>
  19.                 </div>
  20.                 <div class="col-lg-6 order-1 order-lg-2 hero-img" data-aos="fade-left" data-aos-delay="200">
  21.                     <img src="{{ asset('assets/img/hero-img.png') }}" class="img-fluid animated" alt="">
  22.                 </div>
  23.             </div>
  24.         </div>
  25.     </section>
  26. {% endblock hero %}
  27. {% block main %}
  28.     <!-- ======= Services Section ======= -->
  29.     {% include 'home/include/services.twig' %}
  30.     <!-- End Services Section -->
  31.     <!-- ======= Features Section ======= -->
  32.     {% include 'home/include/features.twig' %}
  33.     <!-- End Features Section -->
  34.     <!-- ======= Contact Us Section ======= -->
  35.     {% include 'base/include/contacts/index.html.twig' %}
  36.     <!-- End Contact Us Section -->
  37. {% endblock main %}
  38. {% block javascripts %}
  39.     <script src="{{ asset('assets/js/main.js') }}"></script>
  40.     <script src="{{ asset('assets/doapp/mailer/mailer.js') }}"></script>
  41.     <script src="{{ asset('assets/doapp/captcha/modal.js') }}"></script>
  42. {% endblock %}