everyone instead of all on aspect#index page. photo partial avatar now links to poster's profile.

This commit is contained in:
danielvincent 2010-10-23 22:01:01 -07:00
parent f5a0f44c25
commit 18acdc7b55
2 changed files with 8 additions and 2 deletions

View file

@ -4,7 +4,7 @@
%li.message{:data=>{:guid=>post.id}}
= person_image_tag(post.person)
= person_image_link(post.person)
.content
.from

View file

@ -4,11 +4,17 @@
#left_pane
%h2= @aspect
- if @aspect == :all
%h2= "Everyone"
- else
%h2= @aspect
.friend_pictures
= owner_image_link
- for friend in @friends
= person_image_link(friend)
- if @logged_in && (@aspect == :public)
%h3 Facebook Friends
- @fb_friends = MiniFB.get(@access_token, 'me', :type => "friends")