gitlab-org--gitlab-foss/app/views/layouts/profile.html.haml

31 lines
1.3 KiB
Text
Raw Normal View History

2011-11-02 11:21:17 -04:00
!!!
%html
%head
%title
GitLab #{" - #{@project.name}" if @project && !@project.new_record?}
2011-12-28 02:18:50 -05:00
= favicon_link_tag 'favicon.ico'
2011-11-02 11:21:17 -04:00
= stylesheet_link_tag "application"
= javascript_include_tag "application"
= csrf_meta_tags
= javascript_tag do
REQ_URI = "#{request.env["REQUEST_URI"]}";
REQ_REFFER = "#{request.env["HTTP_REFERER"]}";
2011-11-03 18:37:02 -04:00
%body{ :class => body_class('project-page'), :id => yield(:boyd_id)}
= render :partial => "layouts/flash"
2011-11-02 11:21:17 -04:00
#container
= render :partial => "layouts/head_panel"
.project-container
.project-sidebar
.fixed
%aside
= link_to "Profile", profile_path, :class => current_page?(:controller => "profile", :action => :show) ? "current" : nil
2011-11-15 08:08:20 -05:00
= link_to "Password & token", profile_password_path, :class => current_page?(:controller => "profile", :action => :password) ? "current" : nil
= link_to "Design", profile_design_path, :class => current_page?(:controller => "profile", :action => :design) ? "current" : nil
2011-11-15 03:34:30 -05:00
= link_to keys_path, :class => controller.controller_name == "keys" ? "current" : nil do
2011-11-02 11:21:17 -04:00
Keys
- unless current_user.keys.empty?
%span{ :class => "number" }= current_user.keys.count
.project-content
= yield