python-awips/_templates/layout.html
srcarter3 6839fb80dd
Added a delay to the redirect
Also added an additional message saying the page was going to redirect automatically in 5 seconds.
2020-11-25 12:19:50 -07:00

12 lines
398 B
HTML

{% block document %}
<html>
<head>
<meta http-equiv="Refresh" content="5; url=https://unidata.github.io/python-awips" />
</head>
<body>
<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 %}