pleroma/lib/pleroma/web/templates/frontend/static/conversation.html.eex
Roman Chvanikov f6c543a82a Static FE
2020-07-31 12:28:38 +03:00

12 lines
223 B
Elixir

<header>
<h1><%= link instance_name(), to: "/" %></h1>
</header>
<main>
<div class="conversation">
<%= for activity <- @activities do %>
<%= render("_notice.html", activity) %>
<% end %>
</div>
</main>