Skip to content

Instantly share code, notes, and snippets.

@og-shawn-crigger
Forked from jelder/404.html
Created August 26, 2012 10:10
Show Gist options
  • Save og-shawn-crigger/3476813 to your computer and use it in GitHub Desktop.
Save og-shawn-crigger/3476813 to your computer and use it in GitHub Desktop.
A 404 page for Octopress blogs which have been migrated from Blogger and may have broken inbound links (.html -> /)
---
layout: page
title: "Not Found"
sharing: false
footer: false
---
Sorry, that page doesn't exist. <span id="suggestion"/>
<script type="text/javascript">
//<![CDATA[
if (window.location.pathname.indexOf(".html") > 0) {
text = "The structure of this site changed recently. Could you be looking for <a></a> instead?"
guess = window.location.pathname.replace(/\.html/,"/")
$("#suggestion").html(text);
$("#suggestion a").html(guess).attr("href", guess);
}
//]]>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment