philomena/lib/philomena_web/templates/activity/_topic_strip.html.heex
2024-06-01 23:50:36 -04:00

14 lines
629 B
Text

<div class="block__content alternating-color">
<%= if @topic.sticky do %>
<i class="fa fa-thumbtack"></i>
<% end %>
<%= if @topic.last_post do %>
<span class="hyphenate-breaks">
<%= render(PhilomenaWeb.UserAttributionView, "_anon_user.html", object: @topic.last_post, conn: @conn) %>
</span>
<%= link("replied to", to: ~p"/forums/#{@topic.forum}/topics/#{@topic}?#{[post_id: @topic.last_post]}" <> "#post_#{@topic.last_post.id}") %>
<% end %>
<%= link(@topic.title, to: ~p"/forums/#{@topic.forum}/topics/#{@topic}") %>
in
<%= link(@topic.forum.name, to: ~p"/forums/#{@topic.forum}") %>
</div>