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>
|
2014-06-05 11:14:06 -04:00
|
|
|
<% if c = @topic_view.topic.category %>
|
|
|
|
<a href="/category/<%= c.slug.blank? ? c.id : c.slug %>"><%= c.name %></a>
|
|
|
|
<% end %>
|
2013-02-13 01:43:21 -05:00
|
|
|
<hr/>
|
|
|
|
|
2013-02-10 13:50:26 -05:00
|
|
|
<% @topic_view.posts.each do |post| %>
|
2013-04-11 16:04:20 -04:00
|
|
|
<% if post.user %>
|
|
|
|
<div class='creator'>
|
2014-08-06 15:55:47 -04:00
|
|
|
<b><%= post.user.username_lower %></b> <%= "(#{post.user.name})" if SiteSetting.display_name_on_posts %> — <%= post.created_at.to_formatted_s(:iso8601) %> — #<%= post.post_number %>
|
2013-04-11 16:04:20 -04:00
|
|
|
</div>
|
|
|
|
<div class='post'>
|
2014-04-15 11:57:43 -04:00
|
|
|
<% if post.hidden %>
|
|
|
|
<%= t('flagging.user_must_edit').html_safe %>
|
|
|
|
<% else %>
|
|
|
|
<%= post.cooked.html_safe %>
|
|
|
|
<% end %>
|
2013-04-11 16:04:20 -04:00
|
|
|
</div>
|
|
|
|
<hr/>
|
|
|
|
<% end %>
|
2013-02-05 14:16:51 -05:00
|
|
|
<% end %>
|
|
|
|
|
2014-03-01 05:16:40 -05:00
|
|
|
|
2014-03-03 12:56:37 -05:00
|
|
|
<p>
|
2014-05-13 10:15:08 -04:00
|
|
|
<% if @topic_view.prev_page %>
|
2014-03-03 12:56:37 -05:00
|
|
|
<%= link_to t(:prev_page), @topic_view.prev_page_path, rel: 'prev' %>
|
|
|
|
<% end %>
|
|
|
|
<% if @topic_view.next_page %>
|
2014-05-20 19:21:47 -04:00
|
|
|
<b><%= link_to t(:next_page), @topic_view.next_page_path, rel: 'next' %></b>
|
2014-03-03 12:56:37 -05:00
|
|
|
<% end %>
|
|
|
|
</p>
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-02-13 01:43:21 -05:00
|
|
|
|
2013-02-21 13:20:00 -05:00
|
|
|
<% content_for :head do %>
|
2014-01-08 01:20:46 -05:00
|
|
|
<%= 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') %>
|
2013-03-08 15:58:37 -05:00
|
|
|
<%= crawlable_meta_data(title: @topic_view.title,
|
|
|
|
description: @topic_view.summary,
|
|
|
|
image: @topic_view.image_url) %>
|
2013-02-21 13:20:00 -05:00
|
|
|
<% end %>
|
2013-03-18 14:24:27 -04:00
|
|
|
|
2014-01-08 01:20:46 -05:00
|
|
|
<% content_for(:title) { @topic_view.title } %>
|