Sha256: 94af3a50b03e42822fe0d697d5e0d71034fd4ae060473ed708e9ec8b9fbbd691

Contents?: true

Size: 808 Bytes

Versions: 1

Compression:

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

1 entries across 1 versions & 1 rubygems

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