summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.haml
blob: d5adca938c94539c4979c86c7dd3905909bfc739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- @show_navigation = true if @show_navigation.nil? && logged_in?
!!!
%html
  %head
    %meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}
      %title= html_title
      %meta{:content => content_for?(:description) ? yield(:description) : "Leap Web", :name => "description"}
        = stylesheet_link_tag "application", :media => "all"
        = javascript_include_tag "application"
        = csrf_meta_tags
        = yield(:head)
  %body
    #masthead
      - if logged_in?
        = render 'layouts/masthead'
      - elsif params[:controller] != 'home'
        = render 'layouts/masthead_noauth'
    #main
      .container-fluid
        - if logged_in?
          .row-fluid
            .span12
              = render 'layouts/header'
        .row-fluid
          = render 'layouts/content'
    #footer
      = render 'layouts/footer'