nycki.net/content/_includes/redirect.njk
nycki 5c5cbfe9a3
All checks were successful
/ build (push) Successful in 46s
fix redirect
2025-08-21 18:34:23 -07:00

16 lines
373 B
Text

---
layout: base.njk
# date: ''
# permalink: ''
# href: ''
---
page moved to <a id="redirect" href="{{ href }}">here</a>.
<script>
const queries = (window.location.search || '').slice(1).split('&');
if (queries.includes('redirect=no')) {
// do nothing
} else {
var el = document.querySelector('#redirect');
window.location.replace(el.href);
}
</script>