mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-06 07:31:04 -05:00
21 lines
534 B
Plaintext
21 lines
534 B
Plaintext
|
|
.view
|
|
= link_to post do
|
|
= image_tag post_image_path(post), class: 'img img-cover'
|
|
%h4.font-weight-bold.mb-3
|
|
%strong
|
|
= link_to post do
|
|
= post.subject
|
|
%p
|
|
by
|
|
= succeed "," do
|
|
%a.font-weight-bold= post.author
|
|
%p.post-body= post_stripped_tags(post, length: 300)
|
|
%h6.font-weight-bold.mb-3
|
|
- post.crops.each do |crop|
|
|
= link_to crop do
|
|
= crop_icon(crop)
|
|
= crop.name.pluralize
|
|
/ = image_tag avatar_uri(post.author, 50), class: 'avatar'
|
|
= link_to 'Read more', post, class: 'btn btn-rounded btn-md'
|