boxes/_layouts/redirect.html
Thomas Jensen c049484e4c
Update website design
- Updated frameworks for better browser support
- Improved responsive design
- Versioned documentation
- Better social media support via the Jekyll SEO plugin
- New looks, fwiw
- Start page has some more relevant info
- Documentation sorted to be more easily accessible
- Internally upgraded from plain CSS to SASS
2021-05-26 21:13:21 +02:00

21 lines
493 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ site.name }} - Moved content</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex,follow">
<meta http-equiv="refresh" content="0; url={{ page.redirect.to }}" />
</head>
<body>
<div>
<p>This page has moved to <A HREF="{{ page.redirect.to }}">{{ page.redirect.to }}</A>.</p>
<p>Please update your bookmarks.</p>
</div>
</body>
</html>