Added a delay to the redirect

Also added an additional message saying the page was going to redirect automatically in 5 seconds.
This commit is contained in:
srcarter3 2020-11-25 12:19:50 -07:00 committed by GitHub
parent 55a6046a3f
commit 6839fb80dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,12 @@
{% block document %}
<html>
<head>
<p>Documentation for python-awips is now hosted at <a href="https://unidata.github.io/python-awips">GitHub Pages</a>.</p>
<meta http-equiv="Refresh" content="5; url=https://unidata.github.io/python-awips" />
</head>
<body>
<meta http-equiv="Refresh" content="0; url=https://unidata.github.io/python-awips" />
<p>Documentation for python-awips is now hosted at <a href="https://unidata.github.io/python-awips">GitHub Pages</a>.<br>
This page will redirect you automatically in 5 seconds.</p>
</body>
</html>
{% endblock %}