mirror of
https://github.com/authenyoo/website-zola.git
synced 2025-11-02 12:38:00 +00:00
12 lines
313 B
HTML
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>
|