public
Fork of imajes/rails-template
Description: based on the awesome rg by mrn
Homepage:
Clone URL: git://github.com/Sutto/rails-template.git
rails-template / application.html.haml
100644 21 lines (18 sloc) 0.7 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
!!! XML
!!!
%html{html_attrs}
 
  %head
    %title= "#{page_title} - #{Settings.site_name}"
    %meta{'http-equiv' => "content-type", :content => "text/html;charset=UTF-8"}
    = stylesheet_link_tag '960/reset.css', '960/text.css', '960/960.css', 'screen.css', :media => 'screen, projection'
    = stylesheet_link_tag 'print.css', :media => 'print'
    /[if IE]
      = stylesheet_link_tag 'ie.css', :media => 'screen, projection'
    = javascript_include_tag "jquery/jquery.min.js", "jquery/jquery.form.js"
    = yield :extra_head
  %body
    #header= render :partial => 'shared/header'
    
    #contents
      #inner-contents= yield
      .clear
    
    #footer= render :partial => 'shared/footer'