discourse/app/views/list/list.erb

40 lines
1.3 KiB
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| %>
<a href="<%= t.relative_url %>"><%= t.title %></a>
<% if !@category && t.category %>
[<a href="<%= t.category.url%>"><%= t.category.name %></a>]
<% end %>
<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>
2014-02-25 12:15:20 -05:00
<% if @list.topics.length > 0 %>
<p>
2014-03-03 12:56:37 -05:00
<% if params[:page].to_i > 0 %>
<a href="<%= @list.prev_topics_url.sub('.json?','?') %>" rel="prev"><%= t 'prev_page'%></a> &nbsp;
2014-02-25 12:15:20 -05:00
<% end %>
<b><a href="<%= @list.more_topics_url.sub('.json?','?') %>" rel="next"><%= t 'next_page'%></a></b>
</p>
<% end %>
2013-02-13 01:43:21 -05:00
2013-10-11 12:35:12 -04:00
<% if @rss %>
<% content_for :head do %>
<%= auto_discovery_link_tag(:rss, {action: "#{@rss}_feed"}, title: I18n.t("rss_description.#{@rss}")) %>
<% end %>
<% end %>
<% 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 %>
2014-10-30 14:26:35 -04:00
<% end %>
<% if @title %>
<% content_for :title do %><%= @title %><% end %>
<% elsif @category %>
2013-07-08 02:01:40 -04:00
<% content_for :title do %><%=@category.name%> <%=t('topics')%><% end %>
<% elsif params[:page] %>
<% content_for :title do %><%=t 'page_num', num: params[:page].to_i + 1 %><% end %>
<% end %>