10 lines
334 B
Text
10 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>
|