Sha256: 64f514a7401c417483ed8036b1320e78ed632775125cc9b1f3baa1e12fd3af96

Contents?: true

Size: 935 Bytes

Versions: 1

Compression:

Stored size: 935 Bytes

Contents

= render :partial => 'forums/standard_parts'

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

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

- content_for :sidebar do
  = render :partial => 'posts/search_form'
  = render :partial => 'topics/latest'
  = render :partial => 'topics/busiest'

- content_for :messages do
  - if @forums.empty?
    %p 
      = t('no_forums')
  - else
    = yield :pagination if @forums.previous_page
    = render :partial => 'forums/forum', :collection => @forums
    = yield :pagination if @forums.next_page

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

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

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

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



#forum
  = yield :messages
  = yield :newtopic

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
radiant-forum-extension-2.0.7 app/views/forums/index.html.haml