2016-09-30 19:56:05 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<!-- From https://superdevresources.com/redirects-jekyll-github-pages/ -->
|
|
|
|
<link rel="canonical" href="{{ page.redirect_to }}"/>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
<meta http-equiv="refresh" content="0;url={{ page.redirect_to }}" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Redirecting...</h1>
|
|
|
|
<a href="{{ page.redirect_to }}">Click here if you are not redirected.<a>
|
2017-10-05 21:34:04 +08:00
|
|
|
<script>
|
|
|
|
var url = '{{ page.redirect_to }}';
|
|
|
|
if (location.hash) {
|
|
|
|
url += location.hash;
|
|
|
|
}
|
|
|
|
location = url;
|
|
|
|
</script>
|
2016-09-30 19:56:05 +08:00
|
|
|
</body>
|
|
|
|
</html>
|