diaspora/app/views/comments/_comment.html.haml
2011-02-02 11:29:37 -08:00

15 lines
532 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.
%li.comment{:data=>{:guid => comment.id}, :class => ("hidden" if(defined? hidden))}
= person_image_link(comment.person)
.content
.from
= person_link(comment.person)
.message
= markdownify(comment.text, :youtube_maps => comment.youtube_titles)
.info
%span.time
= comment.created_at ? timeago(comment.created_at) : timeago(Time.now)