-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (19 loc) · 726 Bytes
/
Copy pathindex.html
File metadata and controls
19 lines (19 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saptarshi Sadhu</title>
<meta http-equiv="refresh" content="0; url=static.html" id="meta-refresh" />
<script>
const hash = window.location.hash;
document.getElementById('meta-refresh').setAttribute('content', '0; url=static.html' + hash);
window.location.replace('static.html' + hash);
</script>
</head>
<body>
<p style="font-family:sans-serif;color:#fff;background:#000;margin:0;padding:20px;">
Redirecting to portfolio… <a href="static.html" style="color:#06b6d4">Click here</a> if not redirected.
</p>
</body>
</html>