11 lines
277 B
Text
11 lines
277 B
Text
<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>
|
|
|
|
|