discourse/app/views/list/list.erb

18 lines
605 B
Plaintext
Raw Normal View History

2013-02-13 01:43:21 -05:00
<div class="topic-list">
2013-02-05 14:16:51 -05:00
<% @list.topics.each do |t| %>
2013-04-18 05:24:47 -04:00
<a href="<%= t.relative_url %>"><%= t.title %></a> <span title='<%= t 'posts' %>'>(<%= t.posts_count %>)</span><br/>
2013-02-05 14:16:51 -05:00
<% end %>
2013-02-13 01:43:21 -05:00
</div>
2013-02-05 14:16:51 -05:00
<% if @list.topics.length > 0 %>
2013-03-01 11:04:13 -05:00
<p><a href="<%= @list.more_topics_url.sub('.json?','?') %>"><%= t 'next_page'%></a></p>
2013-02-05 14:16:51 -05:00
<% end %>
2013-02-13 01:43:21 -05:00
<p><%= t 'powered_by_html' %></p>
<% 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 %>
<% end %>