49 lines
1.8 KiB
Text
49 lines
1.8 KiB
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
.container{:style => "position:relative;"}
|
|
#diaspora_text
|
|
= link_to "DIASPORA*", root_path
|
|
%span.sub_text
|
|
ALPHA
|
|
|
|
- unless current_user
|
|
.right
|
|
%ul#landing_nav
|
|
%li= link_to '@joindiaspora', "http://twitter.com/joindiaspora"
|
|
%li= link_to 'github', "https://github.com/diaspora/diaspora"
|
|
%li= link_to t('.blog'), 'http://blog.joindiaspora.com/'
|
|
%li= link_to t('.login'), new_user_session_path, :class => 'login'
|
|
|
|
- else
|
|
#global_search
|
|
= form_tag(people_path, :method => 'get', :id => "global_search_form") do
|
|
= text_field_tag 'q', nil, :placeholder => t('search'), :type => 'search', :results => 5
|
|
|
|
%ul#user_menu
|
|
.right
|
|
▼
|
|
.avatar
|
|
= owner_image_tag
|
|
= link_to current_user.name, '#'
|
|
%li= link_to t('.view_profile'), current_user.person
|
|
%li= link_to t('.edit_profile'), edit_person_path(current_user.person)
|
|
%li= link_to t('.account_settings'), edit_user_path(current_user)
|
|
%li= link_to t('.logout'), destroy_user_session_path
|
|
|
|
#aspect_nav
|
|
%ul
|
|
%li{:class => ("selected" if @aspect == :all)}
|
|
= link_to ((@request_count == 0)? t('_home') : "#{t('_home')} (#{@request_count})"), root_path, :class => new_request?(@request_count)
|
|
|
|
- for aspect in @aspects
|
|
%li{:class => ("selected" if current_aspect?(aspect))}
|
|
= link_for_aspect aspect
|
|
%li
|
|
= link_to '+', '#add_aspect_pane', :class => "add_aspect_button", :title => t('aspects.manage.add_a_new_aspect')
|
|
|
|
.fancybox_content
|
|
#add_aspect_pane
|
|
= render "aspects/new_aspect"
|
|
|