1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00
Files
tabler/shared/includes/redirect.html
2025-04-15 23:18:49 +02:00

12 lines
538 B
HTML

{% capture url %}{% if include.url contains 'http://' or include.url contains 'https://' %}{{ include.url }}{% else %}{{ page | relative }}{{ include.url }}{% endif %}{%- endcapture %}
<!DOCTYPE html>
<html lang="en-US">
<meta charset="utf-8">
<title>Redirecting…</title>
<link rel="canonical" href="{{ url }}">
<meta http-equiv="refresh" content="0; url={{ url }}">
<meta name="robots" content="noindex">
<noscript><a href="{{ url }}">Click here if you are not redirected.</a></noscript>
<script>location="{{ url }}";</script>
</html>