mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-01-22 05:38:35 +01:00
c049484e4c
- 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
21 lines
493 B
HTML
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>
|