layouts/smol/single.html (view raw)
1{{ define "main" }}
2{{ if not (.Draft) }}<meta http-equiv="Refresh" content="0; url='{{ .Params.redirect }}'" />{{ end }}
3<main>
4 <article>
5 <h1 class="title">Redirecting...</h1>
6 <section class="body">
7 Please click <a href="{{ .Params.redirect }}">here</a> if you are not automatically redirected.
8 </section>
9 </article>
10</main>
11{{ end }}