18 lines
649 B
Text
18 lines
649 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-4.append-1.last
|
|
= render 'shared/aspect_friends', :people => @friends, :aspect => @aspect
|
|
|
|
.span-15.last
|
|
= render 'aspects/no_friends_message', :aspect => @aspect, :friend_count => @friends.count
|
|
= render 'shared/publisher', :aspect => @aspect
|
|
= render 'aspects/no_posts_message', :post_count => @posts.count, :friend_count => @friends.count
|
|
%ul#stream
|
|
- for post in @posts
|
|
= render 'shared/stream_element', :post => post
|
|
|
|
#pagination
|
|
= will_paginate @posts
|
|
|