discourse/app/views/list/list.erb

11 lines
412 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-02-13 01:43:21 -05:00
<a href="<%= t.relative_url %>"><%= t.title %></a> <span title='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-02-13 01:43:21 -05:00
<p><a href="<%= @list.more_topics_url.sub('.json?','?') %>">next page &rarr;</a></p>
2013-02-05 14:16:51 -05:00
<% end %>
2013-02-13 01:43:21 -05:00
<p>Powered by <a href="http://www.discourse.org">Discourse</a>, best viewed with JavaScript enabled</p>