17 lines
919 B
Plaintext
17 lines
919 B
Plaintext
!!! 5
|
|
%html{ :lang => "en"}
|
|
= render "layouts/head"
|
|
%body{:class => "#{app_theme} profile"}
|
|
= render "layouts/flash"
|
|
= render "layouts/head_panel", :title => "Profile"
|
|
.container
|
|
%nav.main_menu
|
|
= link_to "Profile", profile_path, :class => "home #{current_page?(:controller => "profile", :action => :show) ? "current" : nil}"
|
|
= 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
|
|
= 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
|
|
SSH Keys
|
|
.content
|
|
= yield
|