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

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-02-05 14:16:51 -05:00
<h2>
2013-02-13 06:15:10 -05:00
<%= render_topic_title(@topic_view.topic) %>
2013-02-05 14:16:51 -05:00
</h2>
2013-02-13 01:43:21 -05:00
<hr/>
<% @topic_view.posts.each do |post| %>
<% if post.user %>
<div class='creator'>
#<%=post.post_number%> <%= t '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 %>
2013-02-05 14:16:51 -05:00
<% end %>
<% if @topic_view.next_page %>
2013-02-05 14:16:51 -05:00
<p>
<% if params[:page].to_i > 1 %>
<a href="" rel="prev"><%= t 'prev_page'%></a> &nbsp;
<% end %>
<b><a href="<%= @topic_view.next_page_path %>" rel="next"><%= t 'next_page'%></a></b>
2013-02-05 14:16:51 -05:00
</p>
<% end %>
2013-02-13 01:43:21 -05:00
<p><%= t 'powered_by_html' %></p>
<% content_for :head do %>
<%= auto_discovery_link_tag(@topic_view, {action: :feed, slug: @topic_view.topic.slug, topic_id: @topic_view.topic.id}, title: t('rss_posts_in_topic', topic: @topic_view.title), type: 'application/rss+xml') %>
<%= crawlable_meta_data(title: @topic_view.title,
description: @topic_view.summary,
image: @topic_view.image_url) %>
<% end %>
<% content_for(:title) { @topic_view.title } %>