discourse/app/views/topics/show.html.erb
2013-02-11 19:13:04 +08:00

19 lines
562 B
Text

<h2>
<%= link_to(@topic_view.topic.title, @topic_view.topic.relative_url) %>
</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>
<b><%= link_to("next page", @topic_view.topic.relative_url + "?page=" + @next_page ) %></b>
</p>
<% end %>
<%- content_for :canonical do %><%= @canonical %><%- end %>