mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
fd240c1967
Creates a new route for category RSS
17 lines
589 B
Text
17 lines
589 B
Text
<div class="topic-list">
|
|
<% @list.topics.each do |t| %>
|
|
<a href="<%= t.relative_url %>"><%= t.title %></a> <span title='posts'>(<%= t.posts_count %>)</span><br/>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if @list.topics.length > 0 %>
|
|
<p><a href="<%= @list.more_topics_url.sub('.json?','?') %>"><%= t 'next_page'%></a></p>
|
|
<% end %>
|
|
|
|
<p><%= t 'powered_by' %></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 %>
|