2012-02-09 02:59:04 -05:00
|
|
|
!!! 5
|
2012-08-10 18:07:50 -04:00
|
|
|
%html{ lang: "en"}
|
2012-11-28 12:40:54 -05:00
|
|
|
= render "layouts/head", title: "Profile"
|
2012-08-10 18:07:50 -04:00
|
|
|
%body{class: "#{app_theme} profile"}
|
2012-02-09 02:59:14 -05:00
|
|
|
= render "layouts/flash"
|
2012-08-10 18:07:50 -04:00
|
|
|
= render "layouts/head_panel", title: "Profile"
|
2012-02-12 10:48:17 -05:00
|
|
|
.container
|
2012-07-03 13:52:48 -04:00
|
|
|
%ul.main_menu
|
2012-12-02 06:29:24 -05:00
|
|
|
= nav_link(path: 'profiles#show', html_options: {class: 'home'}) do
|
2012-07-03 13:52:48 -04:00
|
|
|
= link_to "Profile", profile_path
|
2012-12-02 06:29:24 -05:00
|
|
|
= nav_link(path: 'profiles#account') do
|
|
|
|
= link_to "Account", account_profile_path
|
2012-09-26 16:14:17 -04:00
|
|
|
= nav_link(controller: :keys) do
|
2012-07-21 03:27:09 -04:00
|
|
|
= link_to keys_path do
|
|
|
|
SSH Keys
|
|
|
|
%span.count= current_user.keys.count
|
2012-12-02 06:29:24 -05:00
|
|
|
= nav_link(path: 'profiles#design') do
|
|
|
|
= link_to "Design", design_profile_path
|
|
|
|
= nav_link(path: 'profiles#history') do
|
|
|
|
= link_to "History", history_profile_path
|
2012-09-14 12:13:25 -04:00
|
|
|
|
2012-09-26 16:14:17 -04:00
|
|
|
.content= yield
|