Files
waybar-online/404.html

15 lines
486 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html>
<head>
<script>
sessionStorage.redirect = location.href;
const projectPages = true; // If you're using the base .github.io domain without a path (i.e. <name>.github.io is your home page), set this to false
const l = window.location;
const repo = projectPages ? "/" + l.pathname.split("/")[1] : "";
l.replace(
l.protocol + "//" + l.hostname + (l.port ? ":" + l.port : "") + repo
);
</script>
</head>
</html>