16 lines
373 B
Text
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>
|