Skip to content

Instantly share code, notes, and snippets.

@gravitano
Created April 12, 2014 09:33
Show Gist options
  • Save gravitano/10526919 to your computer and use it in GitHub Desktop.
Save gravitano/10526919 to your computer and use it in GitHub Desktop.
404 Not Found
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 Not Found</title>
<style>
@import url(//fonts.googleapis.com/css?family=Lato:700);
body {
margin:0;
font-family:'Lato', sans-serif;
text-align:center;
color: #999;
}
.welcome {
width: 300px;
height: 200px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -150px;
margin-top: -100px;
}
a, a:visited {
text-decoration:none;
}
h1 {
font-size: 32px;
margin: 16px 0 0 0;
}
</style>
</head>
<body>
<div class="welcome">
<h1>404 Not Found</h1>
{{ link_to_route('home', 'Back to home') }}
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment