website-zola/public/page/1/index.html
2025-08-01 12:41:53 -03:00

12 lines
313 B
HTML

<!doctype html>
<meta charset="utf-8">
<title>Redirect</title>
<script>
const target = "/";
const hash = window.location.hash || "";
window.location.replace(target + hash);
</script>
<noscript>
<meta http-equiv="refresh" content="0; url=/">
</noscript>
<p><a href="/">Click here</a> to be redirected.</p>