Nicole Dresselhaus ce0c52a66a initial
2025-05-09 21:47:18 +02:00

15 lines
467 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Redirect</title>
<script type="text/javascript">
var redirects = {"":"../Obsidian-RAG.html"};
var hash = window.location.hash.startsWith('#') ? window.location.hash.slice(1) : window.location.hash;
var redirect = redirects[hash] || redirects[""] || "/";
window.document.title = 'Redirect to ' + redirect;
window.location.replace(redirect);
</script>
</head>
<body>
</body>
</html>