Skip to content
Draft
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
275 changes: 275 additions & 0 deletions content/generalinformation/_index.de.md

Large diffs are not rendered by default.

Binary file added content/generalinformation/borderpoint.de.webp
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we embed the image as SVG for better performance and easier editing in the future?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Schleswig, Padborg (Gr) und Padborg sehen aus wie Beschriftungen der Verbindungen, nicht der "Nodes". Können wir die darüber platzieren?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Können wir die vertikalen Linien von dashed auf dotted ändern? Hintergrund ist, dass es etwas verwirrend aussieht, dass zwischen manchen Elementen eine durchgezogene Linie erscheint, zwischen anderen aber nicht:

Image

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/generalinformation/borderpoint.en.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/generalinformation/borderpoint.fr.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/generalinformation/borderstation.de.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/generalinformation/borderstation.en.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/generalinformation/borderstation.fr.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/generalinformation/fip-coupon.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/generalinformation/fip-pass.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 0 additions & 36 deletions content/generalinformation/index.de.md

This file was deleted.

2 changes: 1 addition & 1 deletion layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</div>
</main>
<footer class="o-footer o-container">{{ partial "footer.html" . }}</footer>
{{ if and (eq .Kind "page") (or (eq .Page.Type "country") (eq .Page.Type "operator")) }}
{{ if or (eq .Page.Type "country") (eq .Page.Type "operator") (eq .Page.Type "generalinformation") }}
{{ partial "snackbar" . }}
{{ end }}
</body>
Expand Down
19 changes: 19 additions & 0 deletions layouts/generalinformation/list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{{ define "main" }}
<article class="o-single o-single--with-sidemenu">
{{ partial "contentNavigation" . }}
<div class="o-single__content-wrapper" data-pagefind-body>
<div class="o-single__container o-single__highlight">
<div class="o-single__content-header">
<div class="o-single__content-header-title">
<h1 data-pagefind-meta="title">{{ .Title }}</h1>
</div>
{{ partial "updateDate.html" . }}
</div>

<div class="o-single__content" data-pagefind-weight="2">
{{ partial "content" . }}
</div>
</div>
</div>
</article>
{{ end }}
Loading