Sha256: 348e190b1efa006ae13258f236c4b6bb23fb1c17a880491c9bce7a1e701389e7

Contents?: true

Size: 769 Bytes

Versions: 1

Compression:

Stored size: 769 Bytes

Contents

<% content_for :breadcrumbs do %>
  <ul class="breadcrumbs">
    <li><%= link_to 'Forums', thredded.root_path %></li>
    <li><span><%= messageboard.name %></span></li>
  </ul>
<% end %>

<header>
  <nav>
    <%= yield :breadcrumbs %>
  </nav>

  <%= render 'thredded/shared/currently_online' %>
  <%= render 'thredded/shared/topic_nav' %>
</header>

<section class="topics" id="topics_listing">
  <% if @private_topics.any? %>
    <div class="currently">
      <%= render partial: 'thredded/topics/topic_condensed',
        collection: Thredded::UserTopicDecorator.decorate_all(current_user, @private_topics),
        as: :topic %>
    </div>
  <% end %>
</section>

<footer>
  <%= paginate @private_topics %>

  <nav>
    <%= yield :breadcrumbs %>
  </nav>
</footer>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thredded-0.0.3 app/views/thredded/private_topics/index.html.erb