feedless/app/views/_friends.ejs
2020-04-13 11:11:51 +02:00

6 lines
249 B
Plaintext

<% friends.map(friend => { %>
<a class="friend-item" href="<%= profileUrl(friend.id) %>">
<img style="width: 32px; max-height: 100px; margin-right: 5px;" src="<%= profileImageUrl(friend) %>" />
<div><%= friend.name %></div>
</a>
<% }) %>