gitlabhq/app/views/layouts/profile.html.haml

18 lines
829 B
Plaintext
Raw Normal View History

2012-02-09 08:59:04 +01:00
!!! 5
%html{ :lang => "en"}
= render "layouts/head"
2012-01-26 18:25:35 +01:00
%body.profile
= render "layouts/flash"
= render "layouts/head_panel", :title => "Profile"
.container
%nav.main_menu
= link_to "Profile", profile_path, :class => current_page?(:controller => "profile", :action => :show) ? "current" : nil
= 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
= link_to keys_path, :class => controller.controller_name == "keys" ? "current" : nil do
2012-02-18 13:12:48 +01:00
SSH Keys
.content
.row
.span12= yield
.sidebar= render "layouts/projects_side"