mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-26 10:45:04 -04:00
24 lines
560 B
Plaintext
24 lines
560 B
Plaintext
.well
|
|
.post
|
|
.row
|
|
.span1
|
|
= render :partial => "shared/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 }
|
|
|