templates/partials/about.html.twig line 1

Open in your IDE?
  1. <!--Start WhoWe Are Area-->
  2. <section class="whowe-are-area">
  3.     <div class="layer-outer" style="background-image: url({{ asset('assets/images/shape/shape-2.png') }})"></div>
  4.     <div class="container">
  5.         {% for about in abouts %}
  6.             <div class="sec-title text-center">
  7.                 <h3 style="color: #d65d33; font-weight: bold">{{ about.title }}</h3>
  8.                 <h2 style="text-transform: none">{{ about.slogan | raw }}</h2>
  9.             </div>
  10.         {% endfor %}
  11.         <div class="row">
  12.             <!--Start Single Featured Box-->
  13.             {% for about in about1 %}
  14.                 <div class="col-xl-4 col-lg-4">
  15.                     <div class="single-featured-box text-center">
  16.                         <div class="count-box">01</div>
  17.                         <div class="inner-box">
  18.                             <h3><a href="#">{{ about.title }}</a></h3>
  19.                             <div class="border-box"></div>
  20.                             <div class="text">
  21.                                 <p>{{ about.summary  | raw }}</p>
  22.                             </div>
  23.                         </div>
  24.                         <div class="icon-holder">
  25.                             <span class="flaticon-people-1"></span>
  26.                         </div>
  27.                     </div>
  28.                 </div>
  29.             {% endfor %}
  30.             <!--End Single Featured Box-->
  31.             <!--Start Single Featured Box-->
  32.             {% for about in about2 %}
  33.                 <div class="col-xl-4 col-lg-4">
  34.                     <div class="single-featured-box bg2 text-center">
  35.                         <div class="count-box">02</div>
  36.                         <div class="inner-box">
  37.                             <h3><a href="#">{{ about.title }}</a></h3>
  38.                             <div class="border-box"></div>
  39.                             <div class="text">
  40.                                 <p>{{ about.summary | raw }}</p>
  41.                             </div>
  42.                         </div>
  43.                         <div class="icon-holder">
  44.                             <span class="flaticon-user"></span>
  45.                         </div>
  46.                     </div>
  47.                 </div>
  48.             {% endfor %}
  49.             <!--End Single Featured Box-->
  50.             <!--Start Single Featured Box-->
  51.             {% for about in about3 %}
  52.                 <div class="col-xl-4 col-lg-4">
  53.                     <div class="single-featured-box bg3 text-center">
  54.                         <div class="count-box">03</div>
  55.                         <div class="inner-box">
  56.                             <h3><a href="#">{{ about.title }}</a></h3>
  57.                             <div class="border-box"></div>
  58.                             <div class="text">
  59.                                 <p>{{ about.summary | raw }}</p>
  60.                             </div>
  61.                         </div>
  62.                         <div class="icon-holder">
  63.                             <span class="flaticon-checking"></span>
  64.                         </div>
  65.                     </div>
  66.                 </div>
  67.             {% endfor %}
  68.             <!--End Single Featured Box-->
  69.         </div>
  70.     </div>
  71. </section>
  72. <!--End WhoWe Are Area-->
  73. <!--Start About Style1 Area-->
  74. <section class="about-style1-area">
  75.     <div class="container">
  76.         <div class="row">
  77.             <div class="col-xl-6">
  78.                 <div class="about-style1-text-box">
  79. {#                    <div class="sec-title">#}
  80. {#                        <h3>ABOUT AGENCY</h3>#}
  81. {#                        <h2>Experienced Lawyers Provide<br> <span>Immigration Services.</span></h2>#}
  82. {#                    </div>#}
  83.                     {% for about in abouts %}
  84.                         <div class="inner-contant">
  85.                             <div class="text">
  86.                                 <p>{{ about.summary | raw }}</p>
  87.                             </div>
  88.                             <div class="bottom-box" style="margin-top: 80px;">
  89.                                 <div class="left">
  90.                                     <div class="button">
  91.                                         <a class="btn-one" href="{{ path('app_about') }}"><span class="txt" style="text-transform: none;">Plus de détails<i class="fa fa-angle-double-right" aria-hidden="true"></i></span></a>
  92.                                     </div>
  93.                                 </div>
  94.                                 <div class="right">
  95.                                     <div class="icon">
  96.                                         <span class="flaticon-24-hours thm-clr"></span>
  97.                                     </div>
  98.                                     <div class="phone">
  99.                                         <a href="tel:{{ about.phone }}">{{ about.phone }}</a>
  100.                                     </div>
  101.                                 </div>
  102.                             </div>
  103.                         </div>
  104.                     {% endfor %}
  105.                 </div>
  106.             </div>
  107.             <div class="col-xl-6">
  108.                 <div class="about-style1-image-box">
  109.                     <div class="image-box embed-responsive embed-responsive-16by9">
  110.                         <iframe width="560" class="embed-responsive-16by9" height="315" style="border-radius: 10px" src="https://www.youtube.com/embed/-ynlV-i21KQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
  111. {#                        {% for about in abouts %}#}
  112. {#                            <div class="main-image"><img src="{{ asset('media/files/' ~ about.illustration) }}" alt=""></div>#}
  113. {#                        {% endfor %}#}
  114.                     </div>
  115.                 </div>
  116.             </div>
  117.         </div>
  118.     </div>
  119. </section>
  120. <!--End About Style1 Area-->