<%- if @topic_view.posts.present? %> <%= link_to(I18n.t('embed.title'), @second_post_url, class: 'button', target: '_blank') %> <%- else %> <%= link_to(I18n.t('embed.start_discussion'), @topic_view.topic.url, class: 'button', target: '_blank') %> <%- end if %> <%= link_to(image_tag(SiteSetting.logo_url, class: 'logo'), Discourse.base_url, target: '_blank') %>
<%- if @topic_view.posts.present? %> <%- @topic_view.posts.each do |post| %>
<%= link_to post.created_at.strftime("%e %b %Y"), post.url, class: 'post-date', target: "_blank" %>

<%= post.user.username %>

<%= raw post.cooked %>
<%- end %> <% end %>