{% extends 'base.html.twig' %}
{% block title %} Rules | Webshop {% endblock %}
{% block body %}
<!-- Page Content -->
<div class="text-center m-3 p-3">
<h1> {{ "footer.rules" | trans }}</h1>
{% if legalInformation is defined %}
{% if legalInformation %}
<h2> {{ "rules.legalInformation" | trans }}</h2>
<hr class="bg-webshop">
{{ legalInformation | raw }}
{% endif %}
{% endif %}
{% if generalTerms is defined %}
{% if generalTerms %}
<h2> {{ "rules.generalTerms" | trans }}</h2>
<hr class="bg-webshop">
{{ generalTerms | raw }}
{% endif %}
{% endif %}
</div>
{% endblock %}