kissingcomputer/app/views/blogs/list.html.erb
2026-01-10 16:17:07 +00:00

9 lines
334 B
Text

<ul>
<% @blogs.each do |blog| %>
<section class="blogdesc"><li>
<%= link_to blog.member.name, member_path(blog.member) %> —
<%= link_to blog.title, member_blog_path(blog.member, blog) %> <br><br>Description: <%= truncate(blog.description.to_plain_text, length: 400) %>
</section>
</li>
<br><% end %>
</ul>