mirror of
https://github.com/Dichgrem/Blog.git
synced 2025-07-30 16:49:31 -04:00
13 lines
376 B
HTML
13 lines
376 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Redirect</title>
|
|
<script>
|
|
const target = "https://blog.dich.bid/";
|
|
const hash = window.location.hash || "";
|
|
window.location.replace(target + hash);
|
|
</script>
|
|
<noscript>
|
|
<meta http-equiv="refresh" content="0; url=https://blog.dich.bid/">
|
|
</noscript>
|
|
<p><a href="https://blog.dich.bid/">Click here</a> to be redirected.</p>
|