ignores
[sinatra.git] / files / not_found.erb
blob1c6ad778c10e132611ba53c56e8f42341e453cf7
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html>
6         <head>
7                 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
8                 <title>Not Found :: Sinatra</title>
9         </head>
11         <body id="not_found">
12                 
13                 <style type="text/css" media="screen">
14                         body {
15                                 background-color: #fff;
16                         }
17         
18                         .message {
19                                 padding: 10px;
21                                 font-size: 20px;
22                                 font-color: #333;
23                         }
24                         
25                         #content {
26                         }
27                         
28                         .message pre {
29                                 font-size: 15px;
30                                 text-align: left;
31                                 
32                                 background-color: #ccc;
33                                 
34                                 padding: 10px;
35                         }
36                 </style>
38                 <div id="container">
39                         <div id="content">
40                                 <div class='message'>
41                                         <h3>Sinatra doesn't know this diddy, but he's a quick study.</h3>
42                                         <p>Sing this one:</p>
43 <pre><%= request.request_method.downcase %> '<%= request.path_info %>' do
44         html "Replace this with your code."
45 end</pre>
46                                 </div>
47                         </div>
48                 </div>
50         </body>
52 </html>