Skip to content

Commit 292344c

Browse files
committed
Added 404 page and github ribbon
1 parent 2c3c7ef commit 292344c

File tree

2 files changed

+74
-0
lines changed

2 files changed

+74
-0
lines changed

404.html

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2+
<html xmlns="http://www.w3.org/1999/html">
3+
<head>
4+
<meta content='Rest CookBook' name='description'>
5+
6+
<link href='/css/blueprint/screen.css' type='text/css' rel='stylesheet' media='screen, projection'>
7+
<link href='/css/blueprint/print.css' type='text/css' rel='stylesheet' media='print'>
8+
<link href='/css/restcookbook.css' type='text/css' rel='stylesheet' media='screen, projection'>
9+
<!--[if lt IE 8]> >%link{:rel=>"stylesheet", :href=>"css/blueprint/ie.css", :type=>"text/css", :media=>"screen, projection"} <![endif]-->
10+
11+
<link href='/favicon.ico' type='image/x-icon' rel='icon'>
12+
<link href='/favicon.ico' type='image/x-icon' rel='shortcut icon'>
13+
14+
<title>404 - The RESTful cookbook</title>
15+
</head>
16+
17+
<body>
18+
<a href="https://github.com/restcookbook"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
19+
20+
<div id="logostrip">
21+
<div class="container">
22+
<div class="span-24 last" id="topheader">
23+
<h1><a href='/'>The RESTful CookBook</a></h1>
24+
</div>
25+
<div class="span-2">
26+
&nbsp;
27+
</div>
28+
<div class="span-22 last" id="topsubheader">
29+
<h4><em>How to do stuff RESTful</em></h4>
30+
</div>
31+
</div>
32+
</div>
33+
34+
35+
<div class="container">
36+
<div class="span-16 last">
37+
&nbsp;
38+
</div>
39+
<div class="span-15">
40+
<div class="span-14 last" id="bodycontent">
41+
42+
<h1>404 - Not found</h1>
43+
44+
<p>
45+
The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. The
46+
410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is
47+
permanently unavailable and has no forwarding address. This status code is commonly used when the server does not wish to reveal exactly why
48+
the request has been refused, or when no other response is applicable.
49+
</p>
50+
51+
<p>
52+
<a href="/">Go back to the main page...</a>
53+
</p>
54+
55+
56+
57+
</div>
58+
</div>
59+
</div>
60+
61+
62+
<div id="footerstrip">
63+
<div class="container">
64+
<div class="span-24 last" id="footer">
65+
Copyright 2012 <a href="http://www.adayinthelifeof.nl/">Joshua Thijssen</a> and others. Like to contribute? Add your recipe to our <a href="http://github.com/restcookbook/restcookbook.github.com">github repository</a>.<br/>
66+
Looking for Puppet recipies? Try the <a href="http://www.puppetcookbook.com">Puppet CookBook</a>.
67+
</div>
68+
</div>
69+
</div>
70+
71+
</body>
72+
</html>
73+

_layouts/default.html

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
</head>
1616

1717
<body>
18+
<a href="https://github.com/restcookbook"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
1819

1920
<div id="logostrip">
2021
<div class="container">

0 commit comments

Comments
 (0)