templates/rules/rules.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %} Rules | Webshop {% endblock %}
  3. {% block body %}
  4.     <!-- Page Content -->
  5.     <div class="text-center m-3 p-3">
  6.         <h1> {{ "footer.rules" | trans }}</h1>
  7.         {% if legalInformation is defined %}
  8.             {% if legalInformation %}
  9.                 <h2> {{ "rules.legalInformation" | trans }}</h2>
  10.                 <hr class="bg-webshop">
  11.                 {{ legalInformation | raw }}
  12.             {% endif %}
  13.         {% endif %}
  14.         {% if generalTerms is defined %}
  15.             {% if generalTerms %}
  16.                 <h2> {{ "rules.generalTerms" | trans }}</h2>
  17.                 <hr class="bg-webshop">
  18.                 {{ generalTerms | raw }}
  19.             {% endif %}
  20.         {% endif %}
  21.     </div>
  22. {% endblock %}