diff --git a/.env b/.env index 4f2ec8f..d6ea33e 100644 --- a/.env +++ b/.env @@ -65,6 +65,7 @@ APP_CMS_API_BASE_URL="https://www.ep-reisen.de/" APP_WEBSITE_BASE_URL="https://www.ep-reisen.de/" APP_BASE_URL="https://my.ep-reisen.de" APP_CUSTOMER_SERVICE_EMAIL="kundenservice@ep-reisen.de" +APP_INSURANCE_REVOCATION_URL="https://www.hmrv.de/daten-aendern/vertrag-beenden/widerruf" # Travel Data Service Configuration APP_TRAVEL_PREFER_REMOTE=false diff --git a/assets/images/icons.svg b/assets/images/icons.svg index 9e62d41..6d39de6 100644 --- a/assets/images/icons.svg +++ b/assets/images/icons.svg @@ -117,6 +117,12 @@ + + + + + + diff --git a/config/packages/twig.yaml b/config/packages/twig.yaml index f908ee3..100ceb1 100644 --- a/config/packages/twig.yaml +++ b/config/packages/twig.yaml @@ -10,6 +10,7 @@ twig: legal_notice_url: '%env(APP_LEGAL_NOTICE_URL)%' terms_and_conditions_url: '%env(APP_TERMS_AND_CONDITIONS_URL)%' privacy_policy_url: '%env(APP_PRIVACY_POLICY_URL)%' + insurance_revocation_url: '%env(APP_INSURANCE_REVOCATION_URL)%' when@test: twig: diff --git a/templates/layout.html.twig b/templates/layout.html.twig index 0c81ad9..c68f288 100644 --- a/templates/layout.html.twig +++ b/templates/layout.html.twig @@ -8,27 +8,37 @@ {% include '_partials/_header.html.twig' %} {% endblock %} - - - {% block content %}{% endblock %} + + + + {% block content %}{% endblock %} + + {% block footer %} + + + {{ icon('external-link', 'w-3 h-3') }} + Impressum + + + {{ icon('external-link', 'w-3 h-3') }} + AGB + + + {{ icon('external-link', 'w-3 h-3') }} + Datenschutz + + + {{ icon('external-link', 'w-3 h-3') }} + Widerruf RRV + + + {{ icon('cookie', 'w-3 h-3') }} + Cookie-Einstellungen + + + {% endblock %} - {% block footer %} - - - Impressum - - - AGB - - - Datenschutz - - - Cookie-Einstellungen - - - {% endblock %} {% include '_partials/_loading_indicator.html.twig' %}