blob: 4f2051b758745c6bba223387f295e1e6e70c3847 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<html>
<head>
<title>Redirecting to Tor Atlas...</title>
<script type="text/javascript">
(function () {
var atlas = "https://atlas.torproject.org/"
var hash = window.location.hash;
hash = hash.startsWith("#/") ? hash.substring(2) : hash.substring(1);
if (!hash) {
window.location.replace(atlas);
} else if (hash.startsWith("relay/")) {
window.location.replace(atlas + "#details/" + hash.substring(6));
} else if (hash.startsWith("search/query=")) {
window.location.replace(atlas + "#search/" + hash.substring(13));
} else if (hash.startsWith("top10")) {
window.location.replace(atlas + "#top10");
} else {
window.location.replace(atlas);
}
})();
</script>
</head>
<body>
<h1>Globe is shutdown</h1>
<p>Globe has been shut down. <a
href="https://atlas.torproject.org/">Atlas</a> provides the same
functionality that Globe has provided in the past. If you have
JavaScript enabled, you will be redirected shortly.</p>
</body>
</html>
|