lvl0-website/themes/linkita/templates/internal/alias.html

12 lines
394 B
HTML
Raw Normal View History

2025-07-10 20:07:36 +02:00
<!doctype html>
<meta charset="utf-8">
<link rel="canonical" href="{{ url | safe }}">
<title>Redirect</title>
<script>
window.location.replace("{{ url | safe }}" + (window.location.search || "") + (window.location.hash || ""));
</script>
<noscript>
<meta http-equiv="refresh" content="0; url={{ url | safe }}">
</noscript>
<p><a href="{{ url | safe }}">Click here</a> to be redirected.</p>