diff --git a/assets/js/anchorlinks.js b/assets/js/anchorlinks.js index 3475c847..8aa57cfa 100644 --- a/assets/js/anchorlinks.js +++ b/assets/js/anchorlinks.js @@ -7,7 +7,7 @@ function initAnchorlinkEventListener() { anchorLinks.forEach((element) => { element.addEventListener('click', () => { - navigator.clipboard.writeText(element.href).then(() => { + navigator.clipboard.writeText(window.location.origin + window.location.pathname + element.getAttribute('data-anchor')).then(() => { showSnackbar(); }).catch(err => { console.error("Fehler beim Kopieren des Textes:", err); diff --git a/assets/sass/anchorlink.scss b/assets/sass/anchorlink.scss index c1047fe3..0b3bcdf9 100644 --- a/assets/sass/anchorlink.scss +++ b/assets/sass/anchorlink.scss @@ -39,6 +39,10 @@ border-radius: var(--border-radius-s); opacity: .8; text-decoration: none; + color: var(--link-default); + border: none; + background-color: transparent; + transition: all .3s ease; &:hover, &:focus { diff --git a/assets/sass/booking.scss b/assets/sass/booking.scss index 1f6cc1fe..de4c3bd0 100644 --- a/assets/sass/booking.scss +++ b/assets/sass/booking.scss @@ -1,30 +1,3 @@ -.o-booking__summary { - position: relative; - &:hover, - &:focus { - .o-booking__title-text { - text-decoration: underline; - } - } -} - -.details-screen .o-booking__header-actions::before { - content: "keyboard_arrow_down"; - font-size: 2.4rem; - @extend .material-symbols-rounded -} - -.details-screen[open] .o-booking__header-actions::before { - content: "keyboard_arrow_up"; - font-size: 2.4rem; - @extend .material-symbols-rounded -} - -.o-booking__header-actions { - width: 24px; - height: 24px; -} - .o-booking__header-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr; diff --git a/assets/sass/expander.scss b/assets/sass/expander.scss index 3ceab7d2..34e9aefc 100644 --- a/assets/sass/expander.scss +++ b/assets/sass/expander.scss @@ -11,6 +11,15 @@ text-decoration: underline; } } + + &--booking { + &:hover, + &:focus { + .o-booking__title-text { + text-decoration: underline; + } + } + } } .details-print { @@ -54,6 +63,7 @@ details > summary::-webkit-details-marker { position: absolute; right: 1.2rem; font-size: 2.4rem; + align-self: center; @extend .material-symbols-rounded } @@ -63,11 +73,10 @@ details > summary::-webkit-details-marker { @extend .material-symbols-rounded } -details[open] > .o-expander__summary { +details[open] > .o-expander__summary:not(.o-expander__summary--booking) { font-weight: 700; } - @media print { .details-screen { display: none; diff --git a/assets/sass/form.scss b/assets/sass/form.scss index bad7ea0b..2f57fabf 100644 --- a/assets/sass/form.scss +++ b/assets/sass/form.scss @@ -33,6 +33,7 @@ border-radius: var(--border-radius-l); transition: background-color .3s ease; font-weight: 700; + cursor: pointer; &:hover, &:focus { @@ -40,3 +41,12 @@ } } } + +#success { + display: none; + padding: 1rem; + border-radius: var(--border-radius-m); + background-color: green; + color: white; + text-align: left; +} diff --git a/assets/sass/navigation.scss b/assets/sass/navigation.scss index dab60879..526f50fb 100644 --- a/assets/sass/navigation.scss +++ b/assets/sass/navigation.scss @@ -49,14 +49,6 @@ } } -.o-header__nav nav h2 { - display: block; - - @media (min-width: #{$breakpoint-md}) { - display: none; - } -} - .o-header__logo { display: flex; margin: .6rem 0; @@ -229,18 +221,25 @@ .o-header__item { height: fit-content; } - - h2 { - padding-right: 1rem; - text-align: right; - margin-bottom: 0; - font-size: 1.4rem; - text-transform: uppercase; - font-weight: 300; - } } } body:has(.o-header__nav--open) { overflow: hidden; } + +#menu-country-list-title, +#menu-general-list-title { + padding-right: 1rem; + text-align: right; + margin-bottom: 0; + font-size: 1.4rem; + text-transform: uppercase; + font-weight: 300; + + display: block; + + @media (min-width: #{$breakpoint-md}) { + display: none; + } +} diff --git a/assets/sass/startpage.scss b/assets/sass/startpage.scss index 933c04e7..da5085f8 100644 --- a/assets/sass/startpage.scss +++ b/assets/sass/startpage.scss @@ -1,4 +1,4 @@ -.o-startpage h2:not(#welcome-to-the-fip-guide) { +.o-startpage h2:not(.m-teaser__headline) { margin-top: 2rem; } @@ -14,11 +14,12 @@ flex-direction: column; } - h2 { + h1 { font-family: Sansita,Arial,Helvetica,sans-serif; font-weight: 800; font-size: 6.2rem; line-height: 1.1; + margin-bottom: 1rem; } > div { @@ -26,7 +27,7 @@ } @media (max-width: #{$breakpoint-md}) { - h2 { + h1 { font-size: 4.8rem; } } diff --git a/assets/sass/styles.scss b/assets/sass/styles.scss index f657de7f..688639ba 100644 --- a/assets/sass/styles.scss +++ b/assets/sass/styles.scss @@ -174,13 +174,13 @@ img { border-radius: var(--border-radius-l); } - &__content { + &__content-wrapper { display: flex; flex-direction: column; gap: 1.5rem; p { - text-align: justify; + text-align: justify; } } diff --git a/assets/sass/teaser.scss b/assets/sass/teaser.scss index cffbf382..112dfa71 100644 --- a/assets/sass/teaser.scss +++ b/assets/sass/teaser.scss @@ -26,22 +26,26 @@ } } -.m-teaser--listview .m-teaser__wrapper { +.m-teaser--listview { margin-bottom: 2.4rem; - display: grid; - grid-template-columns: 1fr 2fr; - @media (max-width: #{$breakpoint-md}) { - display: flex; - flex-direction: column; - } + .m-teaser__wrapper { - .m-teaser__image img { - border-radius: var(--border-radius-l) 0 0 var(--border-radius-l); + display: grid; + grid-template-columns: 1fr 2fr; @media (max-width: #{$breakpoint-md}) { - border-radius: var(--border-radius-l) var(--border-radius-l) 0 0; - width: 100%; + display: flex; + flex-direction: column; + } + + .m-teaser__image img { + border-radius: var(--border-radius-l) 0 0 var(--border-radius-l); + + @media (max-width: #{$breakpoint-md}) { + border-radius: var(--border-radius-l) var(--border-radius-l) 0 0; + width: 100%; + } } } } @@ -57,12 +61,13 @@ } a { - h3 { + h2 { overflow-wrap: normal; word-break: normal; white-space: normal; hyphens: manual; margin-bottom: 0; + font-size: 2rem; } transition: background 0.2s, color 0.2s; diff --git a/content/_index.de.md b/content/_index.de.md index 5fddf13e..f9052a31 100644 --- a/content/_index.de.md +++ b/content/_index.de.md @@ -3,7 +3,7 @@ description: "Die Community-Website für alle Informationen zu FIP (internationa In diesem Projekt sind Informationen und Nutzungshinweise zu FIP sowie Besonderheiten zu den jeweiligen beteiligten Bahngesellschaften aufgeführt." --- -## Willkommen beim FIP Guide! +# Willkommen beim FIP Guide! Finde relevante Informationen und Nutzungshinweise zu FIP sowie Besonderheiten zu den jeweiligen beteiligten Bahngesellschaften. diff --git a/content/_index.en.md b/content/_index.en.md index b68922bb..e3ac6fa8 100644 --- a/content/_index.en.md +++ b/content/_index.en.md @@ -3,7 +3,7 @@ description: "The community website for all information about FIP. This project includes information and usage instructions for FIP as well as special features of the respective participating railway companies." --- -## Welcome to the FIP Guide! +# Welcome to the FIP Guide! Find relevant information and usage instructions for FIP, as well as specifics about the participating railway companies. diff --git a/content/booking/_index.de.md b/content/booking/_index.de.md new file mode 100644 index 00000000..705d7b8a --- /dev/null +++ b/content/booking/_index.de.md @@ -0,0 +1,6 @@ +--- +title: "Buchungsplattformen" +description: "Übersicht über die Buchungswege, über welche FIP-Vergünstigungen gebucht werden können." +--- + +Für die jeweiligen Länder sind unterschiedliche Buchungswege möglich. Schau am besten auf der jeweiligen Betreiberseite nach der passenden Buchungsoption für Deine Reise. diff --git a/content/booking/_index.en.md b/content/booking/_index.en.md new file mode 100644 index 00000000..599a761b --- /dev/null +++ b/content/booking/_index.en.md @@ -0,0 +1,6 @@ +--- +title: "Booking Platforms" +description: "Overview of the booking channels through which FIP discounts can be booked." +--- + +Different booking options are available for each country. It's best to check the respective operator's website for the right booking option for your trip. diff --git a/content/booking/cfl_phone/index.de.md b/content/booking/cfl-phone/index.de.md similarity index 100% rename from content/booking/cfl_phone/index.de.md rename to content/booking/cfl-phone/index.de.md diff --git a/content/booking/cfl_phone/index.en.md b/content/booking/cfl-phone/index.en.md similarity index 100% rename from content/booking/cfl_phone/index.en.md rename to content/booking/cfl-phone/index.en.md diff --git a/content/booking/db_ticket_office/index.de.md b/content/booking/db-ticket-office/index.de.md similarity index 100% rename from content/booking/db_ticket_office/index.de.md rename to content/booking/db-ticket-office/index.de.md diff --git a/content/booking/db_ticket_office/index.en.md b/content/booking/db-ticket-office/index.en.md similarity index 100% rename from content/booking/db_ticket_office/index.en.md rename to content/booking/db-ticket-office/index.en.md diff --git a/content/booking/db_website/db_reservation.de.webp b/content/booking/db-website-fip-db/db_reservation.de.webp similarity index 100% rename from content/booking/db_website/db_reservation.de.webp rename to content/booking/db-website-fip-db/db_reservation.de.webp diff --git a/content/booking/db_website/db_reservation.en.webp b/content/booking/db-website-fip-db/db_reservation.en.webp similarity index 100% rename from content/booking/db_website/db_reservation.en.webp rename to content/booking/db-website-fip-db/db_reservation.en.webp diff --git a/content/booking/db_website_fip_db/index.de.md b/content/booking/db-website-fip-db/index.de.md similarity index 100% rename from content/booking/db_website_fip_db/index.de.md rename to content/booking/db-website-fip-db/index.de.md diff --git a/content/booking/db_website_fip_db/index.en.md b/content/booking/db-website-fip-db/index.en.md similarity index 100% rename from content/booking/db_website_fip_db/index.en.md rename to content/booking/db-website-fip-db/index.en.md diff --git a/content/booking/db_website_fip_db/db_reservation.de.webp b/content/booking/db-website-fip-international/db_reservation.de.webp similarity index 100% rename from content/booking/db_website_fip_db/db_reservation.de.webp rename to content/booking/db-website-fip-international/db_reservation.de.webp diff --git a/content/booking/db_website_fip_db/db_reservation.en.webp b/content/booking/db-website-fip-international/db_reservation.en.webp similarity index 100% rename from content/booking/db_website_fip_db/db_reservation.en.webp rename to content/booking/db-website-fip-international/db_reservation.en.webp diff --git a/content/booking/db_website_fip_international/index.de.md b/content/booking/db-website-fip-international/index.de.md similarity index 100% rename from content/booking/db_website_fip_international/index.de.md rename to content/booking/db-website-fip-international/index.de.md diff --git a/content/booking/db_website_fip_international/index.en.md b/content/booking/db-website-fip-international/index.en.md similarity index 100% rename from content/booking/db_website_fip_international/index.en.md rename to content/booking/db-website-fip-international/index.en.md diff --git a/content/booking/db_website_fip_international/db_reservation.de.webp b/content/booking/db-website/db_reservation.de.webp similarity index 100% rename from content/booking/db_website_fip_international/db_reservation.de.webp rename to content/booking/db-website/db_reservation.de.webp diff --git a/content/booking/db_website_fip_international/db_reservation.en.webp b/content/booking/db-website/db_reservation.en.webp similarity index 100% rename from content/booking/db_website_fip_international/db_reservation.en.webp rename to content/booking/db-website/db_reservation.en.webp diff --git a/content/booking/db_website/index.de.md b/content/booking/db-website/index.de.md similarity index 100% rename from content/booking/db_website/index.de.md rename to content/booking/db-website/index.de.md diff --git a/content/booking/db_website/index.en.md b/content/booking/db-website/index.en.md similarity index 100% rename from content/booking/db_website/index.en.md rename to content/booking/db-website/index.en.md diff --git a/content/booking/dsb_ticket_office/index.de.md b/content/booking/dsb-ticket-office/index.de.md similarity index 100% rename from content/booking/dsb_ticket_office/index.de.md rename to content/booking/dsb-ticket-office/index.de.md diff --git a/content/booking/dsb_ticket_office/index.en.md b/content/booking/dsb-ticket-office/index.en.md similarity index 100% rename from content/booking/dsb_ticket_office/index.en.md rename to content/booking/dsb-ticket-office/index.en.md diff --git a/content/booking/dsb_website/index.de.md b/content/booking/dsb-website/index.de.md similarity index 100% rename from content/booking/dsb_website/index.de.md rename to content/booking/dsb-website/index.de.md diff --git a/content/booking/dsb_website/index.en.md b/content/booking/dsb-website/index.en.md similarity index 100% rename from content/booking/dsb_website/index.en.md rename to content/booking/dsb-website/index.en.md diff --git a/content/booking/eurostar_phone/index.de.md b/content/booking/eurostar-phone/index.de.md similarity index 100% rename from content/booking/eurostar_phone/index.de.md rename to content/booking/eurostar-phone/index.de.md diff --git a/content/booking/eurostar_phone/index.en.md b/content/booking/eurostar-phone/index.en.md similarity index 100% rename from content/booking/eurostar_phone/index.en.md rename to content/booking/eurostar-phone/index.en.md diff --git a/content/booking/ns_ticket_office/index.de.md b/content/booking/ns-ticket-office/index.de.md similarity index 100% rename from content/booking/ns_ticket_office/index.de.md rename to content/booking/ns-ticket-office/index.de.md diff --git a/content/booking/ns_ticket_office/index.en.md b/content/booking/ns-ticket-office/index.en.md similarity index 100% rename from content/booking/ns_ticket_office/index.en.md rename to content/booking/ns-ticket-office/index.en.md diff --git a/content/booking/obb_phone/index.de.md b/content/booking/obb-phone/index.de.md similarity index 95% rename from content/booking/obb_phone/index.de.md rename to content/booking/obb-phone/index.de.md index edbd461f..5698e832 100644 --- a/content/booking/obb_phone/index.de.md +++ b/content/booking/obb-phone/index.de.md @@ -32,7 +32,7 @@ Tickets sind biliger im Vorverkauf (1 Tag vor der Fahrt oder 15 Tage vor der Fah {{% booking-section "reservations" %}} **Reservierungen** -Der Reservierungspreis wird pro Zug berechnet. Für Strecken mit mehreren Zügen kann es daher günstiger sein über die ([Deutsche Bahn zu reservieren]({{% ref "/booking/db_website" %}} "Deutsche Bahn")). +Der Reservierungspreis wird pro Zug berechnet. Für Strecken mit mehreren Zügen kann es daher günstiger sein über die ([Deutsche Bahn zu reservieren]({{% ref "/booking/db-website" %}} "Deutsche Bahn")). Dafür können bei der ÖBB Sitzplatzreservierungen jedoch storniert werden: diff --git a/content/booking/obb_phone/index.en.md b/content/booking/obb-phone/index.en.md similarity index 95% rename from content/booking/obb_phone/index.en.md rename to content/booking/obb-phone/index.en.md index 81a42aaf..42a73a97 100644 --- a/content/booking/obb_phone/index.en.md +++ b/content/booking/obb-phone/index.en.md @@ -32,7 +32,7 @@ Tickets are cheaper if purchased in advance (1 day before travel or 15 days befo {{% booking-section "reservations" %}} **Reservations** -The reservation price is charged per train. For journeys with multiple trains, it may be cheaper to book via the ([Deutsche Bahn]({{% ref "/booking/db_website" %}} "Deutsche Bahn")). +The reservation price is charged per train. For journeys with multiple trains, it may be cheaper to book via the ([Deutsche Bahn]({{% ref "/booking/db-website" %}} "Deutsche Bahn")). However, seat reservations made with ÖBB can be cancelled: diff --git a/content/booking/obb_ticket_machine/index.de.md b/content/booking/obb-ticket-machine/index.de.md similarity index 100% rename from content/booking/obb_ticket_machine/index.de.md rename to content/booking/obb-ticket-machine/index.de.md diff --git a/content/booking/obb_ticket_machine/index.en.md b/content/booking/obb-ticket-machine/index.en.md similarity index 100% rename from content/booking/obb_ticket_machine/index.en.md rename to content/booking/obb-ticket-machine/index.en.md diff --git a/content/booking/obb_ticket_machine/obb_ticket_machine_fip_50.en.webp b/content/booking/obb-ticket-machine/obb_ticket_machine_fip_50.en.webp similarity index 100% rename from content/booking/obb_ticket_machine/obb_ticket_machine_fip_50.en.webp rename to content/booking/obb-ticket-machine/obb_ticket_machine_fip_50.en.webp diff --git a/content/booking/obb_ticket_office/index.de.md b/content/booking/obb-ticket-office/index.de.md similarity index 94% rename from content/booking/obb_ticket_office/index.de.md rename to content/booking/obb-ticket-office/index.de.md index 8afa7d29..187959b5 100644 --- a/content/booking/obb_ticket_office/index.de.md +++ b/content/booking/obb-ticket-office/index.de.md @@ -25,7 +25,7 @@ Fahrkarten (inkl. FIP 50 Tickets) sind billiger im Vorverkauf (1 Tag vor der Fah {{% booking-section "reservations" %}} **Reservierungen** -Der Reservierungspreis wird pro Zug berechnet. Für Strecken mit mehreren Zügen kann es daher günstiger sein über die ([Deutsche Bahn zu reservieren]({{% ref "/booking/db_website" %}} "Deutsche Bahn")). +Der Reservierungspreis wird pro Zug berechnet. Für Strecken mit mehreren Zügen kann es daher günstiger sein über die ([Deutsche Bahn zu reservieren]({{% ref "/booking/db-website" %}} "Deutsche Bahn")). Dafür können bei der ÖBB Sitzplatzreservierungen jedoch storniert werden: diff --git a/content/booking/obb_ticket_office/index.en.md b/content/booking/obb-ticket-office/index.en.md similarity index 94% rename from content/booking/obb_ticket_office/index.en.md rename to content/booking/obb-ticket-office/index.en.md index d611a9c5..46a032f7 100644 --- a/content/booking/obb_ticket_office/index.en.md +++ b/content/booking/obb-ticket-office/index.en.md @@ -25,7 +25,7 @@ Tickets (including FIP 50 tickets) are cheaper if bought in advance (1 day befor {{% booking-section "reservations" %}} **Reservations** -The reservation price is calculated per train. For journeys with multiple trains, it may be cheaper to book reservations via the ([Deutsche Bahn]({{% ref "/booking/db_website" %}} "Deutsche Bahn")). +The reservation price is calculated per train. For journeys with multiple trains, it may be cheaper to book reservations via the ([Deutsche Bahn]({{% ref "/booking/db-website" %}} "Deutsche Bahn")). However, seat reservations made with ÖBB can be cancelled: diff --git a/content/booking/obb_website/index.de.md b/content/booking/obb-website/index.de.md similarity index 94% rename from content/booking/obb_website/index.de.md rename to content/booking/obb-website/index.de.md index 511cbf71..e106544e 100644 --- a/content/booking/obb_website/index.de.md +++ b/content/booking/obb-website/index.de.md @@ -16,7 +16,7 @@ params: {{% booking-section "reservations" %}} **Reservierungen** -Der Reservierungspreis wird pro Zug berechnet. Für Strecken mit mehreren Zügen kann es daher günstiger sein über die ([Deutsche Bahn zu reservieren]({{% ref "/booking/db_website" %}} "Deutsche Bahn")). +Der Reservierungspreis wird pro Zug berechnet. Für Strecken mit mehreren Zügen kann es daher günstiger sein über die ([Deutsche Bahn zu reservieren]({{% ref "/booking/db-website" %}} "Deutsche Bahn")). Dafür können bei der ÖBB Sitzplatzreservierungen jedoch storniert werden: diff --git a/content/booking/obb_website/index.en.md b/content/booking/obb-website/index.en.md similarity index 94% rename from content/booking/obb_website/index.en.md rename to content/booking/obb-website/index.en.md index 6a82f384..db5bff8d 100644 --- a/content/booking/obb_website/index.en.md +++ b/content/booking/obb-website/index.en.md @@ -16,7 +16,7 @@ params: {{% booking-section "reservations" %}} **Reservations** -The reservation price is calculated per train. For journeys with multiple trains, it may be cheaper to book through the ([Deutsche Bahn]({{% ref "/booking/db_website" %}} "Deutsche Bahn")). +The reservation price is calculated per train. For journeys with multiple trains, it may be cheaper to book through the ([Deutsche Bahn]({{% ref "/booking/db-website" %}} "Deutsche Bahn")). However, seat reservations made via ÖBB can be cancelled: diff --git a/content/booking/obb_website/obb_reservation.de.webp b/content/booking/obb-website/obb_reservation.de.webp similarity index 100% rename from content/booking/obb_website/obb_reservation.de.webp rename to content/booking/obb-website/obb_reservation.de.webp diff --git a/content/booking/obb_website/obb_reservation.en.webp b/content/booking/obb-website/obb_reservation.en.webp similarity index 100% rename from content/booking/obb_website/obb_reservation.en.webp rename to content/booking/obb-website/obb_reservation.en.webp diff --git a/content/booking/renfe_ticket_office/index.de.md b/content/booking/renfe-ticket-office/index.de.md similarity index 100% rename from content/booking/renfe_ticket_office/index.de.md rename to content/booking/renfe-ticket-office/index.de.md diff --git a/content/booking/renfe_ticket_office/index.en.md b/content/booking/renfe-ticket-office/index.en.md similarity index 100% rename from content/booking/renfe_ticket_office/index.en.md rename to content/booking/renfe-ticket-office/index.en.md diff --git a/content/booking/sbb_ticket_machine/index.de.md b/content/booking/sbb-ticket-machine/index.de.md similarity index 100% rename from content/booking/sbb_ticket_machine/index.de.md rename to content/booking/sbb-ticket-machine/index.de.md diff --git a/content/booking/sbb_ticket_machine/index.en.md b/content/booking/sbb-ticket-machine/index.en.md similarity index 100% rename from content/booking/sbb_ticket_machine/index.en.md rename to content/booking/sbb-ticket-machine/index.en.md diff --git a/content/booking/sbb_ticket_office/index.de.md b/content/booking/sbb-ticket-office/index.de.md similarity index 100% rename from content/booking/sbb_ticket_office/index.de.md rename to content/booking/sbb-ticket-office/index.de.md diff --git a/content/booking/sbb_ticket_office/index.en.md b/content/booking/sbb-ticket-office/index.en.md similarity index 100% rename from content/booking/sbb_ticket_office/index.en.md rename to content/booking/sbb-ticket-office/index.en.md diff --git a/content/booking/sbb_website/index.de.md b/content/booking/sbb-website/index.de.md similarity index 100% rename from content/booking/sbb_website/index.de.md rename to content/booking/sbb-website/index.de.md diff --git a/content/booking/sbb_website/index.en.md b/content/booking/sbb-website/index.en.md similarity index 100% rename from content/booking/sbb_website/index.en.md rename to content/booking/sbb-website/index.en.md diff --git a/content/booking/sbb_website/sbb_reservation.webp b/content/booking/sbb-website/sbb_reservation.webp similarity index 100% rename from content/booking/sbb_website/sbb_reservation.webp rename to content/booking/sbb-website/sbb_reservation.webp diff --git a/content/booking/sncb_ticket_office/index.de.md b/content/booking/sncb-ticket-office/index.de.md similarity index 100% rename from content/booking/sncb_ticket_office/index.de.md rename to content/booking/sncb-ticket-office/index.de.md diff --git a/content/booking/sncb_ticket_office/index.en.md b/content/booking/sncb-ticket-office/index.en.md similarity index 100% rename from content/booking/sncb_ticket_office/index.en.md rename to content/booking/sncb-ticket-office/index.en.md diff --git a/content/booking/sncb_website/index.de.md b/content/booking/sncb-website/index.de.md similarity index 100% rename from content/booking/sncb_website/index.de.md rename to content/booking/sncb-website/index.de.md diff --git a/content/booking/sncb_website/index.en.md b/content/booking/sncb-website/index.en.md similarity index 100% rename from content/booking/sncb_website/index.en.md rename to content/booking/sncb-website/index.en.md diff --git a/content/booking/uk_mail/index.de.md b/content/booking/uk-mail/index.de.md similarity index 100% rename from content/booking/uk_mail/index.de.md rename to content/booking/uk-mail/index.de.md diff --git a/content/booking/uk_mail/index.en.md b/content/booking/uk-mail/index.en.md similarity index 100% rename from content/booking/uk_mail/index.en.md rename to content/booking/uk-mail/index.en.md diff --git a/content/booking/zssk_ticket_office/index.de.md b/content/booking/zssk-ticket-office/index.de.md similarity index 100% rename from content/booking/zssk_ticket_office/index.de.md rename to content/booking/zssk-ticket-office/index.de.md diff --git a/content/booking/zssk_ticket_office/index.en.md b/content/booking/zssk-ticket-office/index.en.md similarity index 100% rename from content/booking/zssk_ticket_office/index.en.md rename to content/booking/zssk-ticket-office/index.en.md diff --git a/content/booking/zssk_website/index.de.md b/content/booking/zssk-website/index.de.md similarity index 100% rename from content/booking/zssk_website/index.de.md rename to content/booking/zssk-website/index.de.md diff --git a/content/booking/zssk_website/index.en.md b/content/booking/zssk-website/index.en.md similarity index 100% rename from content/booking/zssk_website/index.en.md rename to content/booking/zssk-website/index.en.md diff --git a/content/contact/index.de.html b/content/contact/index.de.html index f2185119..74914f7c 100644 --- a/content/contact/index.de.html +++ b/content/contact/index.de.html @@ -3,11 +3,18 @@ description: "Kontaktiere das Team hinter dem FIP Guide – wir sind für Fragen und Anmerkungen erreichbar und freuen uns auf deinen Inhaltsbeitrag." --- -
+

Kontaktiere das Team hinter dem FIP Guide – wir sind für Fragen und Anmerkungen erreichbar und freuen uns auf deinen Inhaltsbeitrag.

+ +

+ Vielen Dank! Deine Nachricht wurde erfolgreich gesendet. + Wir melden uns schnellstmöglich zurück. +

+ + - +