templates/parts/footer.html.twig line 1

Open in your IDE?
  1. <footer class="footer dark-section">
  2.     <div class="footer__inner width-default">
  3.         <div class="footer__links">
  4.             <div class="left">
  5.                 <ul>
  6.                     {% if is_granted('IS_AUTHENTICATED_FULLY') %}
  7.                         <li><a href="{{ path('classes') }}">Masterclass</a></li>
  8.                     {% else %}
  9.                         {% if app.request.attributes.get('_route') == 'main-page' %}
  10.                             <li><a href="#" class="js-goto-form-section-popup">Masterclass</a></li>
  11.                         {% else %}
  12.                             <li><a href="#" class="js-closed-classes">Masterclass</a></li>
  13.                         {% endif %}
  14.                     {% endif %}
  15. {#                    <li><a href="{{ path('private-lessons') }}">Coaching</a></li>#}
  16.                     <li><a target="_blank" href="{{ path('contact') }}">Kontakt</a></li>
  17. {#                    <li><a href="{{ path('press') }}">Press</a></li>#}
  18.                 </ul>
  19.             </div>
  20.             <div class="right">
  21.                 <p>
  22.                     <a target="_blank" href="{{ path('pdf_leistungsbeschreibung') }}">Leistungen & Gebühren</a>
  23.                     <a target="_blank" href="{{ path('pdf_agb') }}">AGB</a>
  24.                     <a target="_blank" href="{{ path('pdf_datenschutz') }}">Datenschutz</a>
  25.                     <a target="_blank" href="{{ path('impressum') }}">Impressum</a>
  26.                 </p>
  27.             </div>
  28.         </div>
  29.         <div class="footer__copyright">
  30.             <p>© {{ "now"|date('Y') }} masterClassX | All Rights Reserved.</p>
  31. {#            <div class="left">#}
  32. {#                <p>© 2020 ASPACT | ONE | All Rights Reserved.</p>#}
  33. {#            </div>#}
  34. {#            <div class="right">#}
  35. {#                <ul>#}
  36. {#                    <li><a href="{{ path('terms') }}">Terms</a></li>#}
  37. {#                    <li><a href="{{ path('privacy-policy') }}">Privacy policy</a></li>#}
  38. {#                    <li><a href="{{ path('cookie-policy') }}">Cookie policy</a></li>#}
  39. {#                </ul>#}
  40. {#            </div>#}
  41.         </div>
  42.     </div>
  43. </footer>