clacks/lib/clacks_web/templates/frontend/profile.html.eex

14 lines
374 B
Elixir
Raw Normal View History

2019-10-06 23:41:18 +00:00
<h1><%= @actor.data["preferredUsername"] %></h1>
2020-04-26 18:45:51 +00:00
<h2>
<%= if @actor.local do %>
<%= display_username(@actor) %>
<% else %>
<a href="<%= @actor.ap_id %>">
<%= display_username(@actor) %>
</a>
<% end %>
</h2>
2019-10-06 23:41:18 +00:00
<p><%= @actor.data["summary"] %></p>
2020-04-25 16:30:47 +00:00
<%= render "_timeline.html", conn: @conn, statuses_with_authors: Enum.map(@statuses, &({&1, @actor})) %>