al13ntown/app/views/blogs/index.html.erb
2026-08-24 20:12:41 +00:00

8 lines
391 B
Text

<h2>categories.....</h2><section class="uhidk"><% @blogs.each do |blog| %>
<li style="border: 3px double purple;padding:1%;"> <%= link_to blog.title, profile_blog_path(blog.profile, blog) %> <hr style="border: 5px groove purple;">
Description: <br><%= truncate(blog.topic.to_plain_text, length: 400) %> || <%= blog.posts.count %> posts.
</section>
</li>
<br><% end %>
</ul>