2013-02-13 00:43:21 -06:00
|
|
|
<div class="topic-list">
|
2013-02-05 13:16:51 -06:00
|
|
|
<% @list.topics.each do |t| %>
|
2014-06-05 10:14:06 -05:00
|
|
|
<a href="<%= t.relative_url %>"><%= t.title %></a>
|
|
|
|
<% if !@category && t.category %>
|
2014-09-14 23:55:30 -05:00
|
|
|
[<a href="<%= t.category.url%>"><%= t.category.name %></a>]
|
2014-06-05 10:14:06 -05:00
|
|
|
<% end %>
|
|
|
|
<span title='<%= t 'posts' %>'>(<%= t.posts_count %>)</span><br/>
|
2013-02-05 13:16:51 -06:00
|
|
|
<% end %>
|
2013-02-13 00:43:21 -06:00
|
|
|
</div>
|
|
|
|
|
2014-02-25 11:15:20 -06:00
|
|
|
|
2015-02-12 10:53:21 -06:00
|
|
|
<% if @list.topics.length > 0 && @list.more_topics_url %>
|
2014-03-01 04:16:40 -06:00
|
|
|
<p>
|
2014-03-03 11:56:37 -06:00
|
|
|
<% if params[:page].to_i > 0 %>
|
2014-03-01 04:16:40 -06:00
|
|
|
<a href="<%= @list.prev_topics_url.sub('.json?','?') %>" rel="prev"><%= t 'prev_page'%></a>
|
2014-02-25 11:15:20 -06:00
|
|
|
<% end %>
|
2014-03-01 04:16:40 -06:00
|
|
|
<b><a href="<%= @list.more_topics_url.sub('.json?','?') %>" rel="next"><%= t 'next_page'%></a></b>
|
|
|
|
</p>
|
|
|
|
<% end %>
|
2013-02-13 00:43:21 -06:00
|
|
|
|
2013-10-11 11:35:12 -05:00
|
|
|
<% if @rss %>
|
|
|
|
<% content_for :head do %>
|
2015-01-02 06:06:57 -06:00
|
|
|
<%= auto_discovery_link_tag(:rss, { action: "#{@rss}_feed" }, title: I18n.t("rss_description.#{@rss}")) %>
|
2013-10-11 11:35:12 -05:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
2013-02-27 21:36:12 -06:00
|
|
|
<% if @category %>
|
|
|
|
<% content_for :head do %>
|
2015-01-02 06:06:57 -06:00
|
|
|
<%= auto_discovery_link_tag(:rss, { action: :category_feed }, title: t('rss_topics_in_category', category: @category.name)) %>
|
2013-02-27 21:36:12 -06:00
|
|
|
<% end %>
|
2014-10-30 13:26:35 -05:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% if @title %>
|
|
|
|
<% content_for :title do %><%= @title %><% end %>
|
|
|
|
<% elsif @category %>
|
2013-07-08 01:01:40 -05:00
|
|
|
<% content_for :title do %><%=@category.name%> <%=t('topics')%><% end %>
|
2014-01-14 10:16:10 -06:00
|
|
|
<% elsif params[:page] %>
|
|
|
|
<% content_for :title do %><%=t 'page_num', num: params[:page].to_i + 1 %><% end %>
|
2013-02-27 21:36:12 -06:00
|
|
|
<% end %>
|