static-fe overhaul (#236)
[akkoma] / lib / pleroma / web / templates / static_fe / static_fe / conversation.html.eex
index 2acd84828f2056df5424fd4becd5bcea29c38268..b825c85e7f9deaab2fc9691d7ae2067b61a0c438 100644 (file)
@@ -1,11 +1,8 @@
-<header>
-  <h1><%= link instance_name(), to: "/" %></h1>
-</header>
-
-<main>
-  <div class="conversation">
-    <%= for activity <- @activities do %>
-      <%= render("_notice.html", activity) %>
-    <% end %>
+<div class="panel conversation">
+  <div class="panel-heading">
+    <%= gettext("Conversation") %>
   </div>
-</main>
+  <%= for activity <- @activities do %>
+  <%= render("_notice.html", activity) %>
+  <% end %>
+</div>