Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions assets/sass/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,10 @@ figure {
}
}

.o-list__list--single-column {
grid-template-columns: 1fr;
}

.o-list__list-item {
&--country,
&--operator {
Expand Down
22 changes: 11 additions & 11 deletions content/country/_index.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ title: "Übersicht der Länder"
description: "Übersichtliche Darstellung aller Länder, in denen FIP-Vergünstigungen genutzt werden können. Erfahre, in welchen Ländern FIP 50 Tickets und internationale Freifahrten genutzt werden können."
params:
countriesWithoutFip:
- Albanien
- Åland
- Albanien (HSH - Hekurudha Shqiptare)
- Andorra
- Belarus
- Estland
- Belarus (BČ - Belaruskaja Tschyhunka)
- Estland (Elron - Eesti Liinirongid)
- Färöer
- Finnland
- Isle of Man
- Finnland (VR - VR-Yhtymä)
- Isle of Man (IoMR - Isle of Man Railways)
- Island
- Malta
- Moldau
- Russland
- Moldau (CFM - Calea Ferată din Moldova)
- Russland (RZD - Rossiyskie zheleznye dorogi)
- San Marino
- Schweden
- Türkei
- Ukraine
- Schweden (SJ - SJ AB)
- Türkei (TCDD - Türkiye Cumhuriyeti Devlet Demiryolları)
- Ukraine (UZ - Ukrzaliznytsia)
- Vatikanstadt
- Zypern
- Åland
---

Finde auf den nachfolgenden Seiten die FIP-Regelungen für Dein Reiseziel.
Expand Down
22 changes: 11 additions & 11 deletions content/country/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@ description: "A clear overview of all countries where FIP benefits are available

params:
countriesWithoutFip:
- Albania
- Åland Islands
- Albania (HSH - Hekurudha Shqiptare)
- Andorra
- Belarus
- Belarus (BČ - Belaruskaja Tschyhunka)
- Cyprus
- Estonia
- Estonia (Elron - Eesti Liinirongid)
- Faroe Islands
- Finland
- Finland (VR - VR-Yhtymä)
- Iceland
- Isle of Man
- Isle of Man (IoMR - Isle of Man Railways)
- Malta
- Moldova
- Russia
- Moldova (CFM - Calea Ferată din Moldova)
- Russia (RZD - Rossiyskie zheleznye dorogi)
- San Marino
- Sweden
- Turkey
- Ukraine
- Sweden (SJ - SJ AB)
- Turkey (TCDD - Türkiye Cumhuriyeti Devlet Demiryolları)
- Ukraine (UZ - Ukrzaliznytsia)
- Vatican City
- Åland Islands
---

Find the FIP regulations for your destination on the following pages.
Expand Down
20 changes: 10 additions & 10 deletions content/country/_index.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ title: "Liste des pays"
description: "Un aperçu clair de tous les pays où les avantages du FIP peuvent être utilisés. Découvrez dans quels pays les billets FIP 50 et Coupons FIP sont valables."
params:
countriesWithoutFip:
- Albanie
- Albanie (HSH - Hekurudha Shqiptare)
- Andorre
- Belarus
- Belarus (BČ - Belaruskaja Tschyhunka)
- Chypre
- Estonie
- Finlande
- Estonie (Elron - Eesti Liinirongid)
- Finlande (VR - VR-Yhtymä)
- Islande
- Île de Man
- Île de Man (IoMR - Isle of Man Railways)
- Îles Féroé
- Îles Åland
- Malte
- Moldavie
- Russie
- Moldavie (CFM - Calea Ferată din Moldova)
- Russie (RZD - Rossiyskie zheleznye dorogi)
- Saint-Marin
- Suède
- Turquie
- Ukraine
- Suède (SJ - SJ AB)
- Turquie (TCDD - Türkiye Cumhuriyeti Devlet Demiryolları)
- Ukraine (UZ - Ukrzaliznytsia)
- Vatican
---

Expand Down
9 changes: 7 additions & 2 deletions layouts/country/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ <h2 id="countries-with-fip">{{ T "countries.overview" }}</h2>
{{ range .Pages }}
<li class="o-list__list-item o-list__list-item--country">
<a href="{{ .RelPermalink }}" class="o-list__link">
<div class="o-list__picture">
<!-- Exclude flags from Pagefind so this overview page does not show misleading country flag thumbnails in search results. -->
<div class="o-list__picture" data-pagefind-ignore="all">
{{ partial "flag" (dict "country" .File.ContentBaseName) }}
</div>
<div>
Expand All @@ -31,9 +32,13 @@ <h2 id="countries-with-fip">{{ T "countries.overview" }}</h2>
{{ end }}
</ul>
</div>
<!-- Only show Countries/Operators without FIP to avoid displaying this page to users who would like to find an operator page -->
<div data-pagefind-body>
<h2 id="countries-without-fip">{{ T "countries.without-fip" }}</h2>
<ul class="o-list__list" aria-labelledby="countries-without-fip">
<ul
class="o-list__list o-list__list--single-column"
aria-labelledby="countries-without-fip"
>
{{ range .Params.countriesWithoutFip }}
<li>{{ . }}</li>
{{ end }}
Expand Down
Loading