aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/templates/frontend/static/conversation.html.eex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pleroma/web/templates/frontend/static/conversation.html.eex')
-rw-r--r--lib/pleroma/web/templates/frontend/static/conversation.html.eex11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/pleroma/web/templates/frontend/static/conversation.html.eex b/lib/pleroma/web/templates/frontend/static/conversation.html.eex
new file mode 100644
index 000000000..2acd84828
--- /dev/null
+++ b/lib/pleroma/web/templates/frontend/static/conversation.html.eex
@@ -0,0 +1,11 @@
+<header>
+ <h1><%= link instance_name(), to: "/" %></h1>
+</header>
+
+<main>
+ <div class="conversation">
+ <%= for activity <- @activities do %>
+ <%= render("_notice.html", activity) %>
+ <% end %>
+ </div>
+</main>