25 lines
877 B
Text
25 lines
877 B
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
.span-24.last
|
|
%h2{:style => "position:relative;"}
|
|
= current_user.name
|
|
.right{:style=>"top:0"}
|
|
%span.description
|
|
= link_to current_user.diaspora_handle, person_path(current_user.person)
|
|
= info_text(t('.handle_explanation'))
|
|
|
|
.span-15
|
|
= render 'aspects/no_contacts_message', :aspect => @aspect, :contact_count => @contacts.count
|
|
= render 'shared/publisher', :aspect => @aspect
|
|
= render 'aspects/no_posts_message', :post_count => @post_hashes.length, :contact_count => @contacts.count
|
|
|
|
= render 'shared/stream', :posts => @post_hashes
|
|
|
|
#pagination
|
|
= will_paginate @posts
|
|
|
|
.span-8.prepend-1.last
|
|
= render 'shared/aspect_contacts', :contacts => @contacts, :aspect => @aspect
|
|
|