mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-12-02 23:57:59 +01:00
22 lines
778 B
Text
22 lines
778 B
Text
<%= if Enum.any?(@posts) do %>
|
|
<div class="block">
|
|
<div class="block__header">
|
|
<span class="block__header__title">
|
|
Recent Forum Posts
|
|
</span>
|
|
<%= link("View all", to: ~p"/posts?#{[pq: "user_id:#{@user.id}"]}") %>
|
|
</div>
|
|
<div class="block__content">
|
|
<div class="block">
|
|
<%= for post <- @posts do %>
|
|
<div class="block__content alternating-color">
|
|
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}") %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|