Community Main Area
<!-- Community Forum Page - this should be injected in main_content div -->
<div class ="forum_wrapper">
<h2 class="section_title">
<%= link_to root_path do %>
<span class="icon icon_arrow_left_large" alt="Back"></span>
<%= @forum.title %>
<% end %>
<span class="unread_count forum_unread_count <%= 'zero_unread' if @unread_topic_count == 0 %>" title="Unread Topics"><%= @unread_topic_count if !@unread_topic_count.blank? %></span>
<div class="mark_as_read">
<span class="icon icon_mark_as_read" alt="Mark as Read"></span>
<a href="#" title="Mark all topics in this forum as read">Mark all as Read</a>
</div>
</h2>
<div class="topics_page">
<%= render :partial => 'show_topics' %>
</div>
</div> <!-- end forum_wrapper -->