Add redirects for old urls

This commit is contained in:
Dorian Zedler 2021-10-20 19:14:01 +02:00
parent 00a9bd4ff1
commit 6c04f9bac2
Signed by: dorian
GPG Key ID: 989DE36109AFA354
5 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
layout: redirect
redirectUrl: "/apps/bluerock"
redirectDelay: "0"
---

View File

@ -0,0 +1,5 @@
---
layout: redirect
redirectUrl: "/apps/scstw"
redirectDelay: "0"
---

View File

@ -0,0 +1,5 @@
---
layout: redirect
redirectUrl: "/apps/scrt"
redirectDelay: "0"
---

View File

@ -0,0 +1,7 @@
{{ define "content" }}
<article class="mb-16 max-w-5xl mx-auto px-4 prose lg:prose-lg prose-blue dark:prose-dark">
<meta http-equiv="refresh" content="{{ .Params.redirectDelay }}; url={{ .Params.redirectUrl }}" />
<h1 class="font-bold text-3xl">Redirecting ...</h1>
<a href="{{ .Params.redirectUrl }}">Click here if nothing happens</a>
</article>
{{ end }}