<%= if Enum.any?(@posts) do %>
Recent Forum Posts <%= link("View all", to: ~p"/posts?#{[pq: "user_id:#{@user.id}"]}") %>
<%= for post <- @posts do %>
Post <%= link(pretty_time(post.created_at), to: ~p"/forums/#{post.topic.forum}/topics/#{post.topic}?#{[post_id: post]}" <> "#post_#{post.id}") %> in topic <%= link(post.topic.title, to: ~p"/forums/#{post.topic.forum}/topics/#{post.topic}") %>
<% end %>
<% end %>