2012-02-09 09:59:04 +02:00
|
|
|
!!! 5
|
2012-08-10 18:07:50 -04:00
|
|
|
%html{ lang: "en"}
|
2012-11-28 19:40:54 +02:00
|
|
|
= render "layouts/head", title: "Profile"
|
2012-08-10 18:07:50 -04:00
|
|
|
%body{class: "#{app_theme} profile"}
|
2012-02-09 09:59:14 +02:00
|
|
|
= render "layouts/flash"
|
2012-08-10 18:07:50 -04:00
|
|
|
= render "layouts/head_panel", title: "Profile"
|
2012-02-12 17:48:17 +02:00
|
|
|
.container
|
2012-07-03 20:52:48 +03:00
|
|
|
%ul.main_menu
|
2012-12-02 13:29:24 +02:00
|
|
|
= nav_link(path: 'profiles#show', html_options: {class: 'home'}) do
|
2013-01-31 11:22:06 +02:00
|
|
|
= link_to profile_path, title: "Profile" do
|
|
|
|
%i.icon-home
|
2012-12-02 13:29:24 +02: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 10:27:09 +03:00
|
|
|
= link_to keys_path do
|
|
|
|
SSH Keys
|
|
|
|
%span.count= current_user.keys.count
|
2012-12-02 13:29:24 +02: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 19:13:25 +03:00
|
|
|
|
2012-09-26 16:14:17 -04:00
|
|
|
.content= yield
|