mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-29 18:46:23 -05:00
55c7ced2f3
when using a javascript-disabled browser
23 lines
579 B
Text
23 lines
579 B
Text
<h2>
|
|
<%= render_topic_title(@topic_view.topic) %>
|
|
</h2>
|
|
<hr/>
|
|
|
|
<% @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>
|
|
<hr/>
|
|
<% end %>
|
|
|
|
<% if @topic_view.next_page %>
|
|
<p>
|
|
<b><%= link_to("next page →".html_safe, @topic_view.next_page_path ) %></b>
|
|
</p>
|
|
<% end %>
|
|
|
|
|
|
<p>Powered by <a href="http://www.discourse.org">Discourse</a>, best viewed with JavaScript enabled</p>
|