diaspora/app/views/people/show.html.haml

24 lines
409 B
Text

.span-18.last
%h1= "#{@person.real_name}"
- if @person_profile
%p
%b First Name
%p
= @person_profile.first_name
%p
%b Last Name
%p
= @person_profile.last_name
%p
%b url
%p
= @person.url
.span-18
- if @person.posts
%h3 stream
%ul#stream
- for post in @person_posts
= render type_partial(post), :post => post
- else
%h3 no posts to display!