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

12 lines
402 B
Text
Raw Permalink Normal View History

2026-03-17 12:49:38 +00:00
<section class="threadindex">
<div class="box">
2026-03-18 01:09:39 +00:00
<h1><%= @forum_topic.title %></h1>
<% @forum_threads.each do |forum_thread| %><section class="forumtopic">
<%= forum_thread.title %> | <%= link_to 'Show', category_forum_topic_forum_thread_path(@category, @forum_topic, forum_thread) %> <br><%= truncate(forum_thread.body, length: 200) %> <br></section><br>
2026-03-17 12:49:38 +00:00
<% end %>
</div>
</section>