remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/apps/remix-ide/src/404.html

15 lines
439 B

3 years ago
<!DOCTYPE html>
<html>
<head>
3 years ago
<title></title>
3 years ago
</head>
<body></body>
<script>
3 years ago
let route = window.location.pathname
if (route.startsWith('/address/0x') && route.length === 51) {
window.location.href = '/#/#address=' + route.replace('/address/', '')
} else if (route.endsWith('.sol')) {
window.location.href = '/#/#url=https://github.com' + route
} else window.location.href = '/'
3 years ago
</script>
</html>