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

29 lines
752 B
Plaintext
Raw Normal View History

2012-02-09 08:59:04 +01:00
!!! 5
%html{ lang: "en"}
2012-02-09 08:59:04 +01:00
= render "layouts/head"
%body{class: "#{app_theme} profile"}
= render "layouts/flash"
= render "layouts/head_panel", title: "Profile"
.container
2012-07-03 19:52:48 +02:00
%ul.main_menu
%li.home{class: tab_class(:profile)}
2012-07-03 19:52:48 +02:00
= link_to "Profile", profile_path
%li{class: tab_class(:password)}
2012-08-03 17:27:39 +02:00
= link_to "Authentication", profile_password_path
2012-07-03 19:52:48 +02:00
%li{class: tab_class(:ssh_keys)}
2012-07-21 09:27:09 +02:00
= link_to keys_path do
SSH Keys
%span.count= current_user.keys.count
%li{class: tab_class(:token)}
2012-07-03 19:52:48 +02:00
= link_to "Token", profile_token_path
%li{class: tab_class(:design)}
2012-07-03 19:52:48 +02:00
= link_to "Design", profile_design_path
.content
2012-03-03 12:03:03 +01:00
= yield