2013-02-13 14:43:21 +08:00
|
|
|
<div class="topic-list">
|
2013-02-06 03:16:51 +08:00
|
|
|
<% @list.topics.each do |t| %>
|
2013-04-18 17:24:47 +08:00
|
|
|
<a href="<%= t.relative_url %>"><%= t.title %></a> <span title='<%= t 'posts' %>'>(<%= t.posts_count %>)</span><br/>
|
2013-02-06 03:16:51 +08:00
|
|
|
<% end %>
|
2013-02-13 14:43:21 +08:00
|
|
|
</div>
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
<% if @list.topics.length > 0 %>
|
2013-03-02 00:04:13 +08:00
|
|
|
<p><a href="<%= @list.more_topics_url.sub('.json?','?') %>"><%= t 'next_page'%></a></p>
|
2013-02-06 03:16:51 +08:00
|
|
|
<% end %>
|
2013-02-13 14:43:21 +08:00
|
|
|
|
2013-03-07 05:25:44 +08:00
|
|
|
<p><%= t 'powered_by_html' %></p>
|
2013-02-28 11:36:12 +08:00
|
|
|
|
2013-10-12 00:35:12 +08:00
|
|
|
<% if @rss %>
|
|
|
|
<% content_for :head do %>
|
|
|
|
<%= auto_discovery_link_tag(:rss, {action: "#{@rss}_feed"}, title: I18n.t("rss_description.#{@rss}")) %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
2013-02-28 11:36:12 +08:00
|
|
|
<% if @category %>
|
|
|
|
<% content_for :head do %>
|
|
|
|
<%= auto_discovery_link_tag(@category, {action: :category_feed, format: :rss}, title: t('rss_topics_in_category', category: @category.name), type: 'application/rss+xml') %>
|
|
|
|
<% end %>
|
2013-07-08 14:01:40 +08:00
|
|
|
<% content_for :title do %><%=@category.name%> <%=t('topics')%><% end %>
|
2013-02-28 11:36:12 +08:00
|
|
|
<% end %>
|