Sha256: b9823eff3351eaceca55af433f1c6aa512b9c4cdc9b0733ba41de7f1c7032aae

Contents?: true

Size: 769 Bytes

Versions: 2

Compression:

Stored size: 769 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 => 'forums/latest'

- 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_path(: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.1 app/views/topics/index.html.haml
radiant-forum-extension-2.0.0 app/views/topics/index.html.haml