<%= link_to SimpleForum.root_application_name, root_path %>
>
<%= link_to 'Forum', simple_forum.root_path %>
>
<%= link_to @forum.name, simple_forum.forum_path(@forum) %>
>
<%= t('.new_topic') %>
<%= form_for @topic, :as => :topic, :url => simple_forum.forum_topics_path(@forum) do |f| %>
<%= f.label :title %>
<%= f.text_field :title %>
<%= f.label :body %>
<%= f.text_area :body %>
<%= f.submit %>
<% end %>