Sha256: c4f35c48c59444358b2a1c0aecb0bfcd7b41963f3222c3e420f7acd02a6d8232

Contents?: true

Size: 941 Bytes

Versions: 7

Compression:

Stored size: 941 Bytes

Contents

= render :partial => 'forums/standard_parts'

- content_for :messages do
  - if @topics.empty?
    %p 
      = t('no_topics')
  - else
    = render :partial => 'topics/topic', :collection => @topics

- content_for :sidebar do
  = render :partial => 'posts/search_form', :locals => {:minimal => true}
  = render :partial => 'forums/latest'
  = render :partial => 'topics/busiest'

- content_for :pagination do
  = pagination_and_summary_for(@topics, t('topics'))

- content_for :breadcrumbs do
  = link_to t('forum').titlecase, topics_url
  = t('separator')
  = yield :title

- content_for :title do
  = t('topics_heading')

- content_for :feedurl do
  = topics_url(:format => :rss)

- content_for :feedlink do
  = feed_link(topics_url(:format => :rss))

- content_for :introduction do
  %p
    =t('topics_introduction')

#forum
  = yield :pagination if @topics.previous_page
  = yield :messages
  = yield :pagination if @topics.next_page



Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
radiant-forum-extension-2.1.6 app/views/topics/index.html.haml
radiant-forum-extension-2.1.4 app/views/topics/index.html.haml
radiant-forum-extension-2.1.3 app/views/topics/index.html.haml
radiant-forum-extension-2.1.2 app/views/topics/index.html.haml
radiant-forum-extension-2.1.1 app/views/topics/index.html.haml
radiant-forum-extension-2.0.9 app/views/topics/index.html.haml
radiant-forum-extension-2.0.8 app/views/topics/index.html.haml