summaryrefslogtreecommitdiff
path: root/app/views/layouts/profile.html.haml
blob: 7a54bb7cf2f04332e02019dcbd80e571d33ef8b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
!!! 5
%html{ lang: "en"}
  = render "layouts/head"
  %body{class: "#{app_theme} profile"}
    = render "layouts/flash"
    = render "layouts/head_panel", title: "Profile"
    .container
      %ul.main_menu
        = nav_link(path: 'profile#show', html_options: {class: 'home'}) do
          = link_to "Profile", profile_path
        = nav_link(path: 'profile#account') do
          = link_to "Account", profile_account_path
        = nav_link(controller: :keys) do
          = link_to keys_path do
            SSH Keys
            %span.count= current_user.keys.count
        = nav_link(path: 'profile#design') do
          = link_to "Design", profile_design_path
        = nav_link(path: 'profile#history') do
          = link_to "History", profile_history_path

      .content= yield