<%= link_to "← Back to the thread", simple_discussion.forum_thread_path(@forum_thread) %>

<%= content_tag :span, "Pinned", class: "text-muted" if @forum_thread.pinned? %> <%= @forum_thread.title %>

<%= category_link(@forum_thread.forum_category) %> • Asked <%= time_ago_in_words @forum_thread.created_at %> by <%= @forum_thread.user.name %>


<%= content_tag :div, id: dom_id(@forum_post), class: forum_post_classes(@forum_post) do %>
<%= avatar_tag(@forum_post.user.email) %> <%= @forum_post.user.name %> commented on <%= link_to @forum_post.created_at.strftime("%b %d, %Y"), simple_discussion.forum_thread_url(@forum_thread, anchor: "forum_post_#{@forum_post.id}") %>:
<%= render "form" %>
<% end %>