I moved 404 to the assets to avoid loading font and images from joindiaspora. #- Can I move the design to a 404-style.css file which will be in the public repository too ? #- This pull request proposes to insert the two font files and the cat image, do you agree ? Depend of amazon seems really bad for me.
14 lines
461 B
HTML
14 lines
461 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>The page you were looking for doesn't exist (404)</title>
|
|
<link href="favicon.ico" rel="shortcut icon">
|
|
<link href="404.css" type="text/css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<!-- This file lives in public/404.html -->
|
|
<div id="big-number" class="transparent">404</div>
|
|
<p>These are not the kittens you're looking for. Move along.</p>
|
|
<p><a href="javascript:history.back()">Go Back?</a></p>
|
|
</body>
|
|
</html>
|