templates/frontend/legal/imprint.html.twig line 1

Open in your IDE?
  1. {% extends 'frontend.html.twig' %}
  2. {% block content %}
  3.     <div class="rts-cart-section section-gap section-imprint" id="imprint">
  4.         <div class="container">
  5.             <h2>Impressum</h2>
  6.             <p><strong>Verantwortlich für den Inhalt dieser Webseite:</strong></p>
  7.             <p><strong>{{ customer.name }}</strong><br>
  8.                 Ansprechpartner: {{ customer.person.firstname }} {{ customer.person.lastname }}<br>
  9.                 {{ customer.address.street }} {{ customer.address.housenr }}<br>
  10.                 {{ customer.address.zipcode }} {{ customer.address.city }}</p>
  11.             <p><strong>Kontakt</strong></p>
  12.             <p>Telefon: {{ customer.contact.phone }}<br>
  13.                 E-Mail: {{ customer.contact.email }}<br></p>
  14.             <p><strong>Haftungsausschluß</strong></p>
  15.             <p>Trotz sorgfältiger inhaltlicher Kontrolle übernehmen wir keine Haftung für die Inhalte externer Links. Für
  16.                 den Inhalt der verlinkten Seiten sind ausschliesslich deren Betreiber verantwortlich.</p>
  17.         </div>
  18.     </div>
  19. {% endblock %}