templates/frontend/general/footer.html.twig line 1

Open in your IDE?
  1. <div class="footer {{ customer.template.footerBackgroundColor }} {{ customer.template.footerTextColor }}">
  2.     <div class="container">
  3.         <div class="footer-inner">
  4.             <div class="row">
  5.                 <div class="col-xl-4 col-md-6">
  6.                     <div class="footer-widget">
  7.                         {% if customer.logo.id is defined %}
  8.                             <div class="footer-logo">
  9.                                 <img src="{{ customer.logo.src }}" alt="{{ customer.name }}" style="max-width: 150px"/>
  10.                             </div>
  11.                         {% endif %}
  12.                         <p class="footer-text {{ customer.template.footerTextColor }}">{{ customer.name }}</p>
  13.                         {# <div class="social-links">
  14.                             <a href="#0" class="platform"><i class="fab fa-facebook-f"></i></a>
  15.                             <a href="#0" class="platform"><i class="fab fa-twitter"></i></a>
  16.                             <a href="#0" class="platform"><i class="fab fa-behance"></i></a>
  17.                             <a href="#0" class="platform"><i class="fab fa-youtube"></i></a>
  18.                         </div> #}
  19.                     </div>
  20.                 </div>
  21.                 <div class="col-xl-3 col-md-6">
  22.                     <div class="footer-widget address-widget">
  23.                         <h3 class="footer-widget-title">KONTAKT</h3>
  24.                         <ul>
  25.                             <li class="widget-list-item">
  26.                                 <i class="fas fa-map-marker-alt {{ customer.template.footerTextColor }}"></i>
  27.                                 <span>{{ customer.address.street }} {{ customer.address.housenr }}<br>
  28.                                 {{ customer.address.zipcode }} {{ customer.address.city }}</span>
  29.                             </li>
  30.                             <li class="widget-list-item {{ customer.template.footerTextColor }}">
  31.                                 <i class="fas fa-phone"></i>
  32.                                 <a href="tel:{{ customer.contact.phone }}">{{ customer.contact.phone }}</a>
  33.                             </li>
  34.                             <li class="widget-list-item">
  35.                                 <i class="fas fa-envelope-open {{ customer.template.footerTextColor }}"></i>
  36.                                 <a href="mailto:{{ customer.contact.email }}">{{ customer.contact.email }}</a>
  37.                             </li>
  38.                             {% if customer.contact.url != ''%}
  39.                             <li class="widget-list-item {{ customer.template.footerTextColor }}">
  40.                                 <i class="fas fa-link"></i>
  41.                                 <a href="{{ customer.contact.url }}" target="_blank">{{ customer.contact.url }}</a>
  42.                             </li>
  43.                             {% endif %}
  44.                         </ul>
  45.                     </div>
  46.                 </div>
  47.                 <div class="col-xl-2 col-md-6 col-sm-6">
  48.                     <div class="footer-widget">
  49.                         <h3 class="footer-widget-title">NAVIGATION</h3>
  50.                         <ul class="widget-items">
  51.                             <li class="widget-list-item">
  52.                                 <a class="{{ customer.template.footerTextColor }}" href="{{ path('app_frontend_index') }}">
  53.                                     Home
  54.                                 </a>
  55.                             </li>
  56.                             {% if customer.contentAboutUs.active %}
  57.                             <li class="widget-list-item">
  58.                                 <a class="{{ customer.template.footerTextColor }}" href="{{ path('app_frontend_index') }}#about-us">
  59.                                     {{ 'app.about_us.title'|trans }}
  60.                                 </a>
  61.                             </li>
  62.                             {% endif %}
  63.                             <li class="widget-list-item">
  64.                                 <a class="{{ customer.template.footerTextColor }}" href="{{ path('app_frontend_index') }}#donation-areas">
  65.                                     {{ 'app.buy_area'|trans }}
  66.                                 </a>
  67.                             </li>
  68.                             {% if customer.contentHowTo.active %}
  69.                             <li class="widget-list-item">
  70.                                 <a class="{{ customer.template.footerTextColor }}" href="{{ path('app_frontend_index') }}#how-it-works">
  71.                                     {{ 'app.how_it_works_title'|trans }}
  72.                                 </a>
  73.                             </li>
  74.                             {% endif %}
  75.                             {% if customer.faq.active %}
  76.                             <li class="widget-list-item">
  77.                                 <a class="{{ customer.template.footerTextColor }}" href="{{ path('app_frontend_index') }}#faq">
  78.                                     {{ 'app.faq'|trans }}
  79.                                 </a>
  80.                             </li>
  81.                             {% endif %}
  82.                             <li class="widget-list-item">
  83.                                 <a class="{{ customer.template.footerTextColor }}" href="{{ path('app_frontend_sponsor_list') }}#sponsor-list">
  84.                                     Sponsorenliste
  85.                                 </a>
  86.                             </li>
  87.                         </ul>
  88.                     </div>
  89.                 </div>
  90.                 <div class="col-xl-3 col-md-6">
  91.                     <div class="footer-widget news-widget">
  92.                         <h3 class="footer-widget-title">EINE SOFTWARE VON</h3>
  93.                         <div class="footer-software">
  94.                             <a href="//www.werbebanden-manager.de" target="_blank">
  95.                                 <img src="{{ asset('assets/images/werbebanden-manager.jpg') }}" width="250px" alt="EINE SOFTWARE VON">
  96.                             </a>
  97.                         </div>
  98.                     </div>
  99.                 </div>
  100.             </div>
  101.         </div>
  102.     </div>
  103.     <div class="footer-bottom-area {{ customer.template.footerBackgroundColor }}-dark-1">
  104.         <div class="container">
  105.             <div class="bottom-area-inner">
  106.                 <span class="copyright">Verantwortlich für den Inhalt: {{ customer.name }}</span>
  107.                 <div class="footer-bottom-links">
  108.                     <a href="{{ path('app_frontend_legal_imprint') }}#imprint" class="{{ customer.template.footerTextColor }}">
  109.                         Impressum
  110.                     </a>
  111.                     <a href="{{ path('app_frontend_legal_data-protection') }}#data-protection" class="{{ customer.template.footerTextColor }}">
  112.                         Datenschutz
  113.                     </a>
  114.                     <a href="{{ path('app_login') }}" class="{{ customer.template.footerTextColor }}">Vereinslogin</a>
  115.                 </div>
  116.             </div>
  117.         </div>
  118.     </div>
  119. </div>