summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.haml
blob: 8ac413a1f446b1cc538a66295e5798f4c0b385cd (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
28
!!!
%html
  %head
    %title
      GitLab #{" - #{@project.name}" if @project && !@project.new_record?}
    = stylesheet_link_tag 'blueprint/screen', :media => "screen, projection"
    = stylesheet_link_tag 'blueprint/print', :media => "print"
    = stylesheet_link_tag 'blueprint/plugins/buttons/screen', :media => "screen, projection"
    = stylesheet_link_tag 'blueprint/plugins/link-icons/screen', :media => "screen, projection"
    = stylesheet_link_tag 'jquery_ui/jquery-ui-1.8.16.custom', :media => "screen, projection"
    = stylesheet_link_tag    "application"
    = javascript_include_tag "application"
    = csrf_meta_tags
    %link{:href => "/assets/favicon.png", :rel => "icon", :type => "image/png"}/
    = javascript_tag do
      REQ_URI = "#{request.env["REQUEST_URI"]}";
      REQ_REFFER = "#{request.env["HTTP_REFERER"]}";
  %body#thebody
    = render :partial => "layouts/flash"
    - if user_signed_in?
      = render :partial => "layouts/head_panel"
      .top_bar.container
        = render :partial => "projects/top_menu" if @project && !@project.new_record?
        = render :partial => "profile/top_menu" if ["keys", "profile"].include?(controller.controller_name)
        = render :partial => "admin/top_menu" if admin_namespace?
    #content-container.container
      .span-24
        = yield