">
- <%= link_to thread.title, forumthread_path(thread) %>
+ <%= link_to truncate(thread.title, length: 60, omission: " …"), forumthread_path(thread) %>
<% if rpl = thread.replies.last %>
<%= rpl.author.name %> <%= link_to "replied", forumthread_path(thread) + "#reply-#{rpl.id}" %>
.
diff --git a/app/views/forumthreads/show.html.erb b/app/views/forumthreads/show.html.erb
index 97c5f81..3473693 100644
--- a/app/views/forumthreads/show.html.erb
+++ b/app/views/forumthreads/show.html.erb
@@ -1,7 +1,5 @@
-<% title @thread.title %>
-
-<%= link_to @thread.forum.group, forumgroup_path(@thread.forum.group) %> → <%= link_to @thread.forum, @thread.forum %> → <%= link_to @thread %>
-
<%= truncate(@thread.title, length: 60, omission: " …") %>
+<%= link_to @thread.forum.group, forumgroup_path(@thread.forum.group) %> → <%= link_to @thread.forum, @thread.forum %> → <%= link_to truncate(@thread.title, length: 60, omission: " …") %>
+
<%= title @thread.title %>