Sha256: 705f51af98228220aa1fed4d2262f29dcdd67df3d6037cbe1f4c2fcbc3def489

Contents?: true

Size: 851 Bytes

Versions: 2

Compression:

Stored size: 851 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'
  = 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 :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

2 entries across 2 versions & 1 rubygems

Version Path
radiant-forum-extension-2.0.6 app/views/topics/index.html.haml
radiant-forum-extension-2.0.5 app/views/topics/index.html.haml