2012-01-12 08:04:57 +01:00
|
|
|
/ Page Header
|
2012-01-12 08:28:57 +01:00
|
|
|
%header.top_panel_holder
|
2012-01-15 18:42:20 +01:00
|
|
|
.wrapper
|
2012-01-16 20:07:57 +01:00
|
|
|
.top_panel_content
|
|
|
|
%div.main_links
|
|
|
|
= link_to root_path, :class => "home", :title => "Home" do
|
2012-01-19 20:00:50 +01:00
|
|
|
= image_tag "logo.png", :width => 100
|
2012-01-12 08:28:57 +01:00
|
|
|
|
2012-01-16 20:07:57 +01:00
|
|
|
- if project_layout
|
|
|
|
.project_name
|
|
|
|
= truncate @project.name, :length => 28
|
|
|
|
.git_url_wrapper
|
|
|
|
%input.git-url.text{:id => "", :name => "", :readonly => "", :type => "text", :value => @project.url_to_repo, :class => "one_click_select"}
|
2012-01-13 22:13:44 +01:00
|
|
|
|
2012-01-12 08:04:57 +01:00
|
|
|
|
2012-01-16 20:07:57 +01:00
|
|
|
.account-box
|
|
|
|
= link_to profile_path, :class => "pic" do
|
|
|
|
= image_tag gravatar_icon(current_user.email)
|
|
|
|
.account-links
|
|
|
|
= link_to profile_path, :class => "username" do
|
|
|
|
My profile
|
|
|
|
= link_to 'Logout', destroy_user_session_path, :class => "logout", :method => :delete
|