mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-29 20:25:09 -04:00
10 lines
305 B
Plaintext
10 lines
305 B
Plaintext
|
|
%h2.font-weight-bold.mb-4.pb-2 Recent posts
|
|
.row
|
|
- Post.includes(:author, :crop_posts, :crops).order(created_at: :desc).limit(6).each do |post|
|
|
.col-lg-4.col-md-12.mb-4
|
|
= render 'posts/preview', post: post
|
|
|
|
%p.text-right
|
|
= link_to "#{t('.view_all')} »", posts_path, class: 'btn btn-block'
|