discourse/app/views/topics/show.html.erb

24 lines
579 B
Plaintext
Raw Normal View History

2013-02-05 13:16:51 -06:00
<h2>
2013-02-13 05:15:10 -06:00
<%= render_topic_title(@topic_view.topic) %>
2013-02-05 13:16:51 -06:00
</h2>
2013-02-13 00:43:21 -06:00
<hr/>
<% @topic_view.posts.each do |post| %>
2013-02-05 13:16:51 -06:00
<div class='creator'>
#<%=post.post_number%> By: <b><%= post.user.name %></b>, <%= post.created_at.to_formatted_s(:long_ordinal) %>
</div>
<div class='post'>
<%= post.cooked.html_safe %>
</div>
2013-02-13 00:43:21 -06:00
<hr/>
2013-02-05 13:16:51 -06:00
<% end %>
<% if @topic_view.next_page %>
2013-02-05 13:16:51 -06:00
<p>
<b><%= link_to("next page &rarr;".html_safe, @topic_view.next_page_path ) %></b>
2013-02-05 13:16:51 -06:00
</p>
<% end %>
2013-02-13 00:43:21 -06:00
<p>Powered by <a href="http://www.discourse.org">Discourse</a>, best viewed with JavaScript enabled</p>