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/>
|
|
|
|
|
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'>
|
|
|
|
#<%=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 %>
|
|
|
|
|
2014-03-01 05:16:40 -05:00
|
|
|
|
2013-02-10 13:50:26 -05:00
|
|
|
<% if @topic_view.next_page %>
|
2013-02-05 14:16:51 -05:00
|
|
|
<p>
|
2014-03-01 05:16:40 -05:00
|
|
|
<% if params[:page].to_i > 1 %>
|
|
|
|
<a href="" rel="prev"><%= t 'prev_page'%></a>
|
|
|
|
<% 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
|
|
|
|
2013-03-06 16:25:44 -05:00
|
|
|
<p><%= t 'powered_by_html' %></p>
|
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 } %>
|