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

21 lines
517 B
Text
Raw Normal View History

2013-02-05 14:16:51 -05:00
<h2>
<%= render_topic_title(@topic_view.topic) %>
2013-02-11 06:18:17 -05:00
2013-02-05 14:16:51 -05:00
</h2>
<% (@post ? [@post] : @topic_view.posts).each do |post| %>
<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>
<% end %>
<% if @next_page%>
<p>
2013-02-11 06:18:17 -05:00
<b><%= render_topic_next_page_link(@topic_view.topic, @next_page) %></b>
2013-02-05 14:16:51 -05:00
</p>
<% end %>
<%- content_for :canonical do %><%= @canonical %><%- end %>