all repos — website-hugo @ b42a6b2bc3a9da20a78d08c4d216700d816bdfa5

My personal blog, built with Hugo!

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 }}