2012-02-09 08:59:04 +01:00
|
|
|
!!! 5
|
|
|
|
%html{ :lang => "en"}
|
|
|
|
= render "layouts/head"
|
2012-03-01 20:23:50 +01:00
|
|
|
%body{:class => "#{app_theme} profile"}
|
2012-02-09 08:59:14 +01:00
|
|
|
= render "layouts/flash"
|
|
|
|
= render "layouts/head_panel", :title => "Profile"
|
2012-02-12 16:48:17 +01:00
|
|
|
.container
|
2012-02-12 01:38:38 +01:00
|
|
|
%nav.main_menu
|
2012-04-24 20:47:01 +02:00
|
|
|
= link_to "Profile", profile_path, :class => "home #{current_page?(:controller => "profile", :action => :show) ? "current" : nil}"
|
2012-05-19 11:00:46 +02:00
|
|
|
= link_to "Password", profile_password_path, :class => current_page?(:controller => "profile", :action => :password) ? "current" : nil
|
|
|
|
= link_to "Token", profile_token_path, :class => current_page?(:controller => "profile", :action => :token) ? "current" : nil
|
2012-02-12 01:38:38 +01:00
|
|
|
= 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
|
2012-01-29 22:59:12 +01:00
|
|
|
.content
|
2012-03-03 12:03:03 +01:00
|
|
|
= yield
|