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