Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Research Institutions - European GenAI Hub</title> | |
<meta name="description" content="Leading European institutions advancing Generative AI research across the continent."> | |
<link rel="stylesheet" href="redirect.css"> | |
<script> | |
// Secure redirect to main page with hash | |
(function() { | |
'use strict'; | |
// Validate current origin before redirect | |
const targetUrl = '/#institutions'; | |
const currentOrigin = window.location.origin; | |
setTimeout(() => { | |
try { | |
// Only redirect if on same origin | |
if (window.location.origin === currentOrigin) { | |
window.location.replace(targetUrl); | |
} | |
} catch (e) { | |
// Fallback to manual link click | |
document.querySelector('.redirect-link').click(); | |
} | |
}, 1000); | |
})(); | |
</script> | |
</head> | |
<body> | |
<div class="redirect-container"> | |
<h2><span class="loading-spinner"></span>Redirecting...</h2> | |
<p>Taking you to the Institutions section</p> | |
<a href="/#institutions" class="redirect-link">Continue manually</a> | |
<div class="redirect-info"> | |
<p>This page has moved to our new single-page application for better performance.</p> | |
</div> | |
</div> | |
</body> | |
</html> |