Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/layouts/application.html.haml')
-rw-r--r--app/views/layouts/application.html.haml28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml
new file mode 100644
index 00000000000..8ac413a1f44
--- /dev/null
+++ b/app/views/layouts/application.html.haml
@@ -0,0 +1,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