blob: 84e414cb30cc5e069de99301cecd49510451ad50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!doctype html>
<meta charset="utf-8">
<title>Redirect</title>
<script>
const target = "https://urbanecologycollective.org/blog/";
const hash = window.location.hash || "";
window.location.replace(target + hash);
</script>
<noscript>
<meta http-equiv="refresh" content="0; url=https://urbanecologycollective.org/blog/">
</noscript>
<p><a href="https://urbanecologycollective.org/blog/">Click here</a> to be redirected.</p>
|