Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
custom: ["https://www.paypal.com/pool/9jVNH0tMMT"]
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ You can see the current information status for operators here: [Content Status](

❤️ A project by railway workers for railway workers.

💰 Support this project: [Donation](https://www.paypal.com/pool/9jVNH0tMMT)

ℹ️
The information provided in this project is not official but is compiled and prepared by the FIPGuide community from various sources and experiences. References to sources can be found in the footnotes of each page. There is no legal connection to FIP or railway companies. No guarantee is given for the accuracy, completeness, or timeliness of any information. Please check with the respective railway company or employer for the latest information and regulations regarding FIP before traveling.

Expand All @@ -37,6 +39,8 @@ Der aktuellen Bearbeitungsstand der Informationen für Betreiber ist hier zu fin

❤️ Ein Projekt von Bahnern für Bahner.

💰 Unterstütze dieses Projekt: [Spende](https://www.paypal.com/pool/9jVNH0tMMT)

ℹ️
Die in diesem Projekt bereitgestellten Informationen sind nicht offiziell, sondern werden von der FIPGuide Community aus verschiedenen Quellen sowie Erfahrungen zusammengetragen und aufbereitet. Nachweise zu Quellen sind in den Fußnoten der jeweiligen Seite zu finden. Es besteht keine rechtliche Verbindung zu FIP oder Bahngesellschaften. Für sämtliche Informationen wird keine Gewähr für die Richtigkeit, Vollständigkeit oder Aktualität übernommen. Bitte informiere dich vor Fahrtantriit bei der jeweiligen Bahngesellschaft oder Arbeitgeber über die aktuellsten Informationen und Bestimmungen zu FIP.

Expand All @@ -55,5 +59,7 @@ L'état actuel du traitement des informations concernant chaque exploitant sont

❤️ Un projet conçu par des cheminots pour les cheminots.

💰 Soutenez ce projet : [Donation](https://www.paypal.com/pool/9jVNH0tMMT)

ℹ️
Les informations fournies dans ce projet ne sont pas officielles, mais sont compilées et traitées par la communauté FIPGuide à partir de diverses sources et expériences. Les références aux sources se trouvent dans les notes de bas de page de chaque page. Il n'existe aucun lien juridique avec la FIP ou les compagnies ferroviaires. Aucune garantie n'est donnée quant à l'exactitude, l'exhaustivité ou l'actualité de toutes les informations. Avant de partir, veuillez vous renseigner auprès de la compagnie ferroviaire ou de votre employeur pour obtenir les informations et les dispositions les plus récentes concernant la FIP.
27 changes: 10 additions & 17 deletions assets/sass/footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,22 @@
.o-footer__links {
display: flex;
flex-wrap: wrap;
gap: 1.6rem;

@media print {
display: none;
}
}

.o-footer__link {
margin-left: 0;
margin-right: 1.6rem;
text-decoration: underline;
color: var(--link-special);
font-weight: 700;
text-decoration: none;

&:hover,
&:focus {
color: var(--link-hovered);
text-decoration: underline;
}
& > a {
color: var(--link-special);
font-weight: 700;
text-decoration: none;

@media (min-width: #{$breakpoint-lg}) {
margin-left: 1.6rem;
margin-right: 0;
&:hover,
&:focus {
color: var(--link-hovered);
text-decoration: underline;
}
}
}

Expand Down
1 change: 1 addition & 0 deletions i18n/de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ country:
one: Land
other: Länder
discord: FIP Guide Community
donation: Spenden
editPage: Seite bearbeiten
footer-love:
aria-label: Made with love in Europe
Expand Down
1 change: 1 addition & 0 deletions i18n/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ country:
one: country
other: countries
discord: FIP Guide Community
donation: Donate
editPage: Edit page
footer-love:
aria-label: Made with love in Europe
Expand Down
1 change: 1 addition & 0 deletions i18n/fr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ country:
other: pays
countryselection: Choisir un pays
discord: Communauté FIP Guide
donation: Donation
editPage: Modifier la page
footer-love:
aria-label: Fait avec amour en Europe
Expand Down
30 changes: 15 additions & 15 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
</div>
<div class="o-footer__links">
{{ $contactPage := site.GetPage "contact" }}
{{ if $contactPage }}
<a class="o-footer__link" href="{{ $contactPage.RelPermalink }}"
>{{ $contactPage.Title }}</a
>
{{ end }}
<a href="{{ $contactPage.RelPermalink }}">
{{ $contactPage.Title }}
</a>
{{ $imprintPage := site.GetPage "imprint" }}
{{ if $imprintPage }}
<a class="o-footer__link" href="{{ $imprintPage.RelPermalink }}"
>{{ $imprintPage.Title }}</a
>
{{ end }}
<a href="{{ $imprintPage.RelPermalink }}">
{{ $imprintPage.Title }}
</a>
{{ $privacyPage := site.GetPage "privacy" }}
{{ if $privacyPage }}
<a class="o-footer__link" href="{{ $privacyPage.RelPermalink }}"
>{{ $privacyPage.Title }}</a
>
{{ end }}
<a href="{{ $privacyPage.RelPermalink }}">
{{ $privacyPage.Title }}
</a>
{{ partial "link"
(dict
"Destination" "https://www.paypal.com/pool/9jVNH0tMMT"
"Text" (T "donation")
)
}}
</div>
</div>
<div class="o-footer__line">
Expand Down
Loading