remove irrelevant warnings
[sinatra.git] / files / default_index.erb
blob243dad20e23432e476c44d78c4d1e916928f801b
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html>
5         <head>
6                 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
7                 <title>Sinatra has taken the stage!</title>
8         </head>
9         
10         <body>
11                 <style type="text/css" media="screen">
12                         body {
13                                 color: #333;
14                                 font-size: 1.5em;
15                         }
16                         
17                         #content {
18                                 margin: 0 auto;
19                                 text-align: center;
20                                 width: 500px;
21                         }
22                         
23                         #content pre {
24                                 text-align: left;
25                                 background-color: #D8D8D8;
26                                 padding: 10px;
27                         }
28                 </style>
29                 <div id="content">
30                         <div id="banner">
31                                 <img src="http://sinatra.rubyforge.org/logo.png">
32                         </div>
33                         <div id="content">
34                                 <h3>Sing this diddy to move on:</h3>
35                                 <pre>
36 get "/" do
37   ... your code here ..
38 end</pre>
39                         </div>
40                 </div>
41         </body>
42 </html>