Mercurial > zeropaste
annotate app/views/layouts/application.html.erb @ 25:faf30647205e
Use bootstrap.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 10 Sep 2012 03:48:01 +0700 |
parents | 4aa8194a1733 |
children | a8b0775798c3 |
rev | line source |
---|---|
0 | 1 <!DOCTYPE html> |
2 <html> | |
3 <head> | |
4 <title>Zeropaste</title> | |
5 <%= stylesheet_link_tag "application", :media => "all" %> | |
6 <%= javascript_include_tag "application" %> | |
7 <%= csrf_meta_tags %> | |
8 </head> | |
9 <body> | |
10 | |
25 | 11 <div class="container-fluid"> |
12 <div class="row-fluid"> | |
13 <div class="span12"> | |
14 <%= yield %> | |
15 </div> | |
16 </div> | |
17 </div> | |
0 | 18 |
19 </body> | |
20 </html> |