mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-19 14:57:50 -05:00
The member's name (in text) is no longer part of the avatar itself, as it looks pretty awful and/or redundant in some places where it's used.
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
.well
|
|
.post
|
|
.row
|
|
.span1
|
|
= render :partial => "members/avatar", :locals => { :member => post.author }
|
|
.span7
|
|
- if defined?(subject)
|
|
%h3= link_to strip_tags(post.subject), post
|
|
|
|
.post-meta
|
|
%p
|
|
Posted by
|
|
= link_to post.author.login_name, member_path(post.author)
|
|
- if post.forum
|
|
in
|
|
= link_to post.forum, post.forum
|
|
at
|
|
= post.created_at
|
|
|
|
.post-body
|
|
:markdown
|
|
#{ strip_tags post.body }
|
|
|
|
- unless defined?(hide_comments)
|
|
.post-comments
|
|
%ul.inline
|
|
%li.first= link_to pluralize(post.comments.count, "comment"),
|
|
post_path(post, :anchor => 'comments')
|
|
-if can? :create, Comment
|
|
%li= link_to "Reply", new_comment_path(:post_id => post.id)
|
|
%li= link_to "Permalink", post
|
|
-if can? :edit, post
|
|
%li= link_to "Edit", edit_post_path(post)
|
|
|
|
|