Add navigation settings, fix page generation

This commit is contained in:
Christoph Hagen
2025-01-02 11:56:51 +01:00
parent 922ba4ebe7
commit 4d4275e072
43 changed files with 921 additions and 581 deletions

View File

@ -32,3 +32,13 @@ extension ContentLanguage: Comparable {
lhs.rawValue < rhs.rawValue
}
}
extension ContentLanguage {
var next: ContentLanguage {
switch self {
case .english: return .german
case .german: return .english
}
}
}