15 lines
288 B
HTML
15 lines
288 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Redirecting to latest...</title>
|
||
|
<script>
|
||
|
window.location.href = "v1/index.html";
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<a href="v1/index.html">Click here if redirection is not working.</a>
|
||
|
|
||
|
</body>
|
||
|
</html>
|