14 lines
374 B
Elixir
14 lines
374 B
Elixir
<h1><%= @actor.data["preferredUsername"] %></h1>
|
|
<h2>
|
|
<%= if @actor.local do %>
|
|
<%= display_username(@actor) %>
|
|
<% else %>
|
|
<a href="<%= @actor.ap_id %>">
|
|
<%= display_username(@actor) %>
|
|
</a>
|
|
<% end %>
|
|
</h2>
|
|
<p><%= @actor.data["summary"] %></p>
|
|
|
|
<%= render "_timeline.html", conn: @conn, statuses_with_authors: Enum.map(@statuses, &({&1, @actor})) %>
|