mirror of
https://github.com/SupertigerDev/waybar-online.git
synced 2026-03-24 08:06:37 +00:00
15 lines
486 B
HTML
15 lines
486 B
HTML
|
|
<!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>
|