add symlink pallas.html

This commit is contained in:
Milan Hauth 2023-11-26 20:31:25 +01:00
parent 4bbefa58a9
commit 882b669664
1 changed files with 55 additions and 0 deletions

55
pallas.html Normal file
View File

@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>pallas</title>
<style type="text/css">
#center {
position: absolute; top: 50%;
height: 1em; margin-top: -0.5em;
width: 100%;
text-align: center;
}
body, a {
background: #000000;
color: #ffffff;
font-family: sans-serif;
margin: 0; padding: 0;
text-decoration: none;
}
</style>
</head>
<body>
<div id="center">
redirecting to ....
<a id="redir" href="src/whoaremyfriends/whoaremyfriends.html">src/whoaremyfriends/whoaremyfriends.html</a>
</div>
<script>
const link = document.getElementById('redir');
const new_url = link.getAttribute('href');
const redir_delay = 1000 * 2;
setTimeout(
function(){
window.location.replace(new_url);
},
redir_delay
);
</script>
</body>
</html>