<%= view_hooks.topic_page.title.render self, topic: topic do %>

forum <%= topic.title %>
<%= t 'thredded.topics.started_by_html', time_ago: time_ago(topic.created_at), user: user_link(topic.user) %>
tune
<% if topic.can_update? %> <%= link_to t('thredded.topics.edit'), topic.edit_path, class: 'thredded--post--dropdown--actions--item', rel: 'nofollow' %> <% end %> <% if user_signed_in? && params.key?(:id) %> <%= link_to main_app.documentize_topic_path(params[:id]), class: 'thredded--post--dropdown--actions--item' do %> Export to document <% end %> <%= link_to main_app.plaintext_topic_path(params[:id]), class: 'thredded--post--dropdown--actions--item', rel: 'nofollow' do %> View as plaintext <% end %> <%= link_to main_app.irc_log_topic_path(params[:id]), class: 'thredded--post--dropdown--actions--item', rel: 'nofollow' do %> View as chat log <% end %> <% end %> <% if topic.can_destroy? %>
<%= button_to t('thredded.topics.delete_topic'), topic.destroy_path, method: :delete, form_class: 'thredded--topic-delete-form', class: 'thredded--button thredded--post--dropdown--actions--item', 'data-confirm' => t('thredded.topics.delete_confirm') %>
<% end %>

<% end %> <% if thredded_current_user %> <% if topic.followed? %>
<%= button_to topic.unfollow_path, form: {class: 'thredded--topic-header--follow-info--unfollow'} do %> <%= t('thredded.topics.unfollow') %> <%= inline_svg_tag 'thredded/follow.svg', class: 'thredded--topic-header--follow-icon' %> <% end %>
<% else %>
<%= button_to t('thredded.topics.follow'), topic.follow_path, form: {class: 'thredded--topic-header--follow-info--follow'} %>
<% end %> <% end %> <%= render partial: 'thredded/topics/followers', locals: {topic: topic} %>