Add redirects for old urls #7

Merged
dorian merged 1 commit from dev into master 2021-10-20 19:15:33 +02:00
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 }}