summaryrefslogtreecommitdiff
path: root/app/views/layouts/profile.html.haml
blob: dd7030f4ff1c73c5d68164b0c090cda8fbdf548e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
!!! 5
%html{ :lang => "en"}
  = render "layouts/head"
  %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
          SSH Keys
      .content
        .row
          .span12= yield
          .sidebar= render "layouts/projects_side"