templates/siteBase/footer.html.twig line 1

Open in your IDE?
  1. </main>
  2. <!-- Main area end -->
  3. <!-- Back to top button start -->
  4. <button class="scroll-to-top position-fixed">
  5.   <i class="fas fa-chevron-up"></i>
  6. </button>
  7. <!-- Back to top button end -->
  8. <!-- Footer section start -->
  9. <footer class="ep-footer-section pt-120">
  10.   <div class="footer-bg black-bg">
  11.     <div class="container">
  12.       <div class="row g-4">
  13.         <div class="col-xxl-5 col-lg-4">
  14.           <div class="footer-widget text-center text-lg-start">
  15.             <div class="logo pb-30">
  16.               <a href="{{ ''|site_anaLink }}">
  17.                 <img src="{{ path('panel_storage',{'file':'logo.webp'}) }}" alt="logo" width="120px">
  18.               </a>
  19.             </div>
  20.         
  21.             <p class="pb-30 text-white pe-xxl-5">{{ footerMetin|html_entity_decode|raw }}</p>
  22.             <a href="{{ iletisimLink }}"
  23.               class="icon-box lets-talk mx-auto mx-lg-0 d-flex align-items-center justify-content-center rounded-pill secondary-bg">Bize Ulaşın</a>
  24.           </div>
  25.         </div>
  26.         <div class="col-xxl-3 col-lg-4">
  27.           <div class="footer-widget text-center text-lg-start ps-xl-5 ps-xxl-3">
  28.             <h3 class="heading-three text-white pb-30">Hızlı Menü</h3>
  29.             <ul class="list-unstyled important-link">
  30.               {% for menu in menuler %}
  31.                 <li><a href="{{ menu.link }}">{{ menu.adi }}</a></li>
  32.               {% endfor %}
  33.             </ul>
  34.           </div>
  35.         </div>
  36.         <div class="col-xxl-4 col-lg-4">
  37.           <div class="footer-widget text-center text-lg-start contact-widget">
  38.             <h3 class="heading-three text-white pb-30">Bize Ulaşın</h3>
  39.             <ul class="list-unstyled contact-info">
  40.               <li>
  41.                 <p>E-Posta</p>
  42.                 <h4 class="heading-four contact-title">
  43.                   <a href="mailto:{{ 'eposta'|site_iletisimBilgileri|raw }}">{{ 'eposta'|site_iletisimBilgileri|raw }}</a>
  44.                 </h4>
  45.               </li>
  46.               <li>
  47.                 <p>Telefon</p>
  48.                 <h4 class="heading-four contact-title">
  49.                   <a href="tel:{{ 'telefon'|site_iletisimBilgileri|raw }}">{{ 'telefon'|site_iletisimBilgileri|raw }}</a>
  50.                 </h4>
  51.               </li>
  52.               <li>
  53.                 <p>Adres</p>
  54.                 <h4 class="heading-four contact-title">
  55.                   <a href="#">{{ 'adres'|site_iletisimBilgileri|raw }}</a>
  56.                 </h4>
  57.               </li>
  58.             </ul>
  59.           </div>
  60.         </div>
  61.       </div>
  62.       <div class="footer-btm">
  63.         <div class="row g-3">
  64.           <div class="col-lg-6">
  65.             <div class="footer-copyright text-center text-lg-start">
  66.               <p>© {{ 'siteAdi'|ayarlar }} {{ 'now'|date('Y') }} | Tüm hakları saklıdır. 
  67.               </p>
  68.             </div>
  69.           </div>
  70.           <div class="col-lg-6">
  71.             <div class="footer-menu">
  72.               <ul
  73.                 class="list-unstyled d-flex flex-wrap justify-content-center justify-content-lg-end align-items-center">
  74.                 <li><a href="https://www.sevenmedya.com" target="_blank" rel="nofollow">Seven Medya</a></li>
  75.               </ul>
  76.             </div>
  77.           </div>
  78.         </div>
  79.       </div>
  80.     </div>
  81.   </div>
  82. </footer>
  83. <!-- Footer section end -->