akkoma/lib/pleroma/web/templates/static_fe/static_fe/conversation.html.eex

12 lines
223 B
Elixir
Raw Normal View History

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