projects
/
akkoma
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
static fe: add user profile rendering
[akkoma]
/
lib
/
pleroma
/
web
/
templates
/
static_fe
/
static_fe
/
profile.html.eex
1
<h1><%= raw (@data.user.name |> Formatter.emojify(emoji_for_user(@data.user))) %></h1>
2
<p><%= raw @data.user.bio %></p>
3
<div class="activity-stream">
4
<%= for activity <- @data.timeline do %>
5
<%= render("notice.html", %{data: activity}) %>
6
<% end %>
7
</div>