Mercurial > zeropaste
annotate app/views/layouts/application.html.erb @ 26:a8b0775798c3
Added title.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 10 Sep 2012 03:49:08 +0700 |
parents | faf30647205e |
children | 108e8d6fd0d5 |
rev | line source |
---|---|
0 | 1 <!DOCTYPE html> |
2 <html> | |
3 <head> | |
26 | 4 <title><%= html_title %></title> |
0 | 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> |