mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-02-08 22:00:36 +01:00
21 lines
484 B
HTML
21 lines
484 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 }}" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
<p>This page has moved to <A HREF="{{ page.redirect }}">{{ page.redirect }}</A>.</p>
|
|
<p>Please update your bookmarks.</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|