From 8597b42f513582b58aa9036f30fa65f898f6502c Mon Sep 17 00:00:00 2001
From: CoDE_Admin CoDE_Admin <code_admin@komm.one>
Date: Tue, 7 May 2024 10:39:00 +0000
Subject: [PATCH] Something seems broken in the i18n selector at target.

Ensuring a language-aware redirect
---
 .gitlab-ci.yml |  3 ++-
 index_en.html  | 11 +++++++++++
 2 files changed, 13 insertions(+), 1 deletion(-)
 create mode 100644 index_en.html

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 51cce74..d6887ba 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,8 @@ pages:
     - mkdir -p public/en/start/
     - mkdir -p public/start/
     - cp index.html public/
-    - cp index.html public/en/start/
+    - cp index_en.html public/en/start/
+    - cp index_en.html public/en/
     - cp index.html public/start/
   artifacts:
     paths:
diff --git a/index_en.html b/index_en.html
new file mode 100644
index 0000000..c6abd1b
--- /dev/null
+++ b/index_en.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+  <html>
+    <head>
+  		<title>Redirect</title>
+  			<meta charset="UTF-8" />
+  			<meta http-equiv="refresh" content="1; URL=https://bmi.usercontent.opencode.de/eudi-wallet/eidas2/en/" />
+  	</head>
+  	<body>
+  		<p>We moved <a href="https://bmi.usercontent.opencode.de/eudi-wallet/eidas2/en">here</a> </p>
+  	</body>
+  </html>
\ No newline at end of file
-- 
GitLab