<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Redirecting to Torc Documentation</title>
<script>
fetch('versions.json')
.then(r => r.json())
.then(data => {
const target = data.latest_release
? data.latest_release + '/'
: 'latest/';
window.location.replace(target);
})
.catch(() => {
window.location.replace('latest/');
});
</script>
<noscript>
<meta http-equiv="refresh" content="0; url=latest/">
</noscript>
</head>
<body>
<p>Redirecting to <a href="latest/">documentation</a>...</p>
</body>
</html>