templates/front/help_faq/help_faq.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Centre d'aide | {{ parent() }}{% endblock %}
  3. {% block body %}
  4. <section class="parallax-section single-par" data-scrollax-parent="true">
  5.     <div class="bg" {% if help.background %}data-bg="{{ asset('/uploads/files/help/' ~ help.background) }}"{% endif %} data-scrollax="properties: { translateY: '30%' }"></div>
  6.     <div class="overlay"></div>
  7.     <div class="container">
  8.         <div class="home-intro">
  9.             <div class="section-title-separator"><span></span></div>
  10.             <h2><span class="text-capitalize">{{ help.title }}</span></h2>
  11.             <span class="section-separator"></span>
  12.             <h3 style="font-size: 1.5rem !important">{{ help.subTitle }}</h3>
  13.         </div>
  14.     </div>
  15.     <div class="header-sec-link">
  16.         <div class="container"><a href="#sec1" class="custom-scroll-link color-bg"><i class="fal fa-angle-double-down"></i></a></div>
  17.     </div>
  18. </section>
  19. <div class="breadcrumbs-fs fl-wrap">
  20.     <div class="container">
  21.         <div class="breadcrumbs fl-wrap"><a href="#">Help</a><span>Centre d'aide</span></div>
  22.     </div>
  23. </div>
  24. <section class="grey-blue-bg middle-padding" id="sec1">
  25.     <div class="container">
  26.         <div class="row">
  27.             <div class="col-md-4">
  28.                 <div class="box-widget-item fl-wrap help-bar">
  29.                     <div class="box-widget">
  30.                         <div class="box-widget-content">
  31.                             <div class="box-widget-item-header">
  32.                                 <h3>Questions Fréquemment Posées</h3>
  33.                             </div>
  34.                             <div class="faq-nav fl-wrap">
  35.                                 <ul class="tabs-menu-original">
  36.                                     {% for category in faqCategory %}
  37.                                     <li><a class="custom-scroll-link {% if loop.first %}act-faq-link{% endif %}" href="#faqo{{ category.id }}">{{ category.name }}</a></li>
  38.                                     {% endfor %}
  39.                                 </ul>
  40.                             </div>
  41.                             <div class="search-widget">
  42.                                 <form action="#" class="fl-wrap">
  43.                                     <input name="se" id="se" type="text" class="search" placeholder="Enter Keyword" value="">
  44.                                     <button class="search-submit color2-bg" id="submit_btn"><i class="fal fa-search transition"></i> </button>
  45.                                 </form>
  46.                             </div>
  47.                         </div>
  48.                     </div>
  49.                 </div>
  50.             </div>
  51.             <div class="col-md-8">
  52.                 {% for category in faqCategory %}
  53.                 <div id="faqo{{ category.id }}" class="tab-content-original">
  54.                     <div class="title-devis">
  55.                         <span>{{ category.name }}</span>
  56.                     </div>
  57.                     {% for faq in category.questions %}                    
  58.                     <div class="list-single-main-item-changed fl-wrap">
  59.                         <div class="list-single-main-item-title-changed fl-wrap toggle-h3">
  60.                             <h3>{{ faq.question|raw }}</h3>
  61.                         </div>
  62.                         <p class="toggle-h3-paragraph">{{ faq.answer|raw }}</p>
  63.                     </div>
  64.                     {% endfor %}
  65.                 </div>
  66.                 {% endfor %}
  67.             </div>
  68.         </div>
  69.     </div>
  70.     <div class="limit-box"></div>
  71. </section>
  72. <section class="color-bg" id="sec3">
  73.     <div class="wave-bg wave-bg2"></div>
  74.     <div class="container">
  75.         <div class="row">
  76.             <div class="col-md-6">
  77.                 <div class="colomn-text fl-wrap pad-top-column-text">
  78.                     <div class="colomn-text-title">
  79.                         <h3>{{ help.video }}</h3>
  80.                         <p>{{ help.description }}</p>
  81.                         {% if help.btnName %}
  82.                         <a href="{% if help.btnLink %}{{ help.btnLink }}{% else %}#{% endif %}" target="_blank" class="btn color2-bg float-btn">{{ help.btnName }}<i class="fas fa-link"></i></a>
  83.                         {% endif %}
  84.                     </div>
  85.                 </div>
  86.             </div>
  87.             <div class="col-md-6">
  88.                 <div class="video-box fl-wrap video-box-span-none">
  89.                     {% if help.videoImage %}
  90.                         <img src="{{ asset('/uploads/files/help/' ~ help.videoImage) | imagine_filter('597x396') }}" class="respimg" alt="{{ help.video }}">
  91.                     {% else %}
  92.                         <img src="{{ asset('front/images/all/ryvup.jpeg') | imagine_filter('597x396') }}" class="respimg" alt="{{ help.video }}">
  93.                     {% endif %}
  94.                     {% if help.videoLink is defined and help.videoLink is not null %}
  95.                     <a class="video-box-btn image-popup" href="{{ help.videoLink }}"><i class="fa fa-play" aria-hidden="true"></i></a>
  96.                     <span class="video-box-title">{{ help.video }}</span>
  97.                     {% endif %}
  98.                 </div>
  99.             </div>
  100.         </div>
  101.     </div>
  102. </section>
  103. <section>
  104.     <div class="container">
  105.         <div class="section-title">
  106.             <h2>{{ help.helpfulTitle }}</h2>
  107.             <span class="section-separator"></span>
  108.             <p>{{ help.helpfulSubtitle }}</p>
  109.         </div>
  110.         <div class="row">
  111.             <div class="col-md-4">
  112.                 <div class="process-item">
  113.                     <span class="process-count"> </span>
  114.                     <div class="time-line-icon">{{ help.helpfulIcon1|raw }}</div>
  115.                     <h4><a href="#">{{ help.helpfulTitle1 }}</a></h4>
  116.                     <p>{{ help.helpfulSubtitle1 }}</p>
  117.                 </div>
  118.             </div>
  119.             <div class="col-md-4">
  120.                 <div class="process-item">
  121.                     <span class="process-count"> </span>
  122.                     <div class="time-line-icon">{{ help.helpfulIcon2|raw }}</div>
  123.                     <h4> <a href="#">{{ help.helpfulTitle2 }}</a></h4>
  124.                     <p>{{ help.helpfulSubtitle2 }}</p>
  125.                 </div>                             
  126.             </div>
  127.             <div class="col-md-4">
  128.                 <div class="process-item nodecpre">
  129.                     <span class="process-count"> </span>
  130.                     <div class="time-line-icon">{{ help.helpfulIcon3|raw }}</div>
  131.                     <h4><a href="#">{{ help.helpfulTitle3 }}</a></h4>
  132.                     <p>{{ help.helpfulSubtitle3 }}</p>
  133.                 </div>                            
  134.             </div>
  135.         </div>
  136.     </div>
  137. </section>
  138. {% endblock %}