sillyforum/app/views/forum_topics/show.html.erb

12 lines
277 B
Text
Raw Normal View History

2026-03-17 12:49:38 +00:00
<section class="threadindex">
<div class="box">
<h1><%= @forum_topics.title %></h1>
<% @threads.each do |thread| %><section class="forumtopic">
<%= thread.title %> <br><%= truncate(@thread.body, length: 200) %> <br></section><br>
<% end %>
</div>
</section>