You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
789 B
22 lines
789 B
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Redirect Sandbox to docs</title> |
|
<script> |
|
// Function to redirect with all GET parameters |
|
function redirect() { |
|
const targetUrl = 'https://ceccopierangiolieugenio.github.io/pyTermTk-Docs/sandbox/sandbox.html'; |
|
const queryString = window.location.search; |
|
window.location.href = targetUrl + queryString; |
|
} |
|
|
|
// Execute the redirect function on page load |
|
window.onload = redirect; |
|
</script> |
|
</head> |
|
<body> |
|
<p>Redirecting to <a href="https://ceccopierangiolieugenio.github.io/pyTermTk-Docs/sandbox/sandbox.html">pyTermTk-Docs</a>...</p> |
|
</body> |
|
</html>
|
|
|