From 65a7bb72817f62149bfa5867283de8a394ac6b14 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Mon, 11 Sep 2023 21:10:57 +0200 Subject: [PATCH 1/2] :mag: new main domain `sbgg.jetzt` --- README.md | 2 +- meta.php | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1a319e0..e9cc543 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# www.selbstbestimmungsgesetz-jetzt.de +# SBGG.jetzt Website documenting the progress of the German Selbstbestimmungsgesetz. diff --git a/meta.php b/meta.php index 8ce6a17..aaf70cd 100644 --- a/meta.php +++ b/meta.php @@ -13,11 +13,16 @@ // ROUTES // - static::$route["www.selbstbestimmungsgesetz-jetzt.de"] = [ - ["path" => "**", "redirect_domain" => "selbstbestimmungsgesetz-jetzt.de"] + // redirect to main domain + $redirect = [ + ["path" => "**", "redirect_domain" => "sbgg.jetzt"] ]; + static::$route["www.sbgg.jetzt"] = $redirect; + static::$route["selbstbestimmungsgesetz-jetzt.de"] = $redirect; + static::$route["www.selbstbestimmungsgesetz-jetzt.de"] = $redirect; - static::$route["selbstbestimmungsgesetz-jetzt.de"] = [ + // pages + static::$route["sbgg.jetzt"] = [ ["path" => "", "target" => "page/start"] ]; ?> From d2c04cee9e983b81816e4c64242ff8658b3ca3b5 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Mon, 11 Sep 2023 21:11:27 +0200 Subject: [PATCH 2/2] :bookmark: bump version to v1.0.13 --- meta.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta.php b/meta.php index aaf70cd..87a2e8d 100644 --- a/meta.php +++ b/meta.php @@ -1,6 +1,6 @@