mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-09-15 04:52:17 +09:00
df76a227dc
First open source release of Campfire 🎉
13 lines
502 B
Plaintext
13 lines
502 B
Plaintext
<%= button_to rooms_directs_path(user_ids: [ user.id ]), class: "direct borderless fill-transparent unpad" do %>
|
|
<span class="avatar">
|
|
<%= image_tag fresh_user_avatar_path(user), aria: { hidden: "true" } %>
|
|
</span>
|
|
|
|
<span class="direct__author flex align-center gap max-width min-width border-radius txt-small">
|
|
<span class="txt-nowrap overflow-ellipsis">
|
|
<span class="for-screen-reader">Start a ping with</span>
|
|
<%= user.name.split(' ')[0] %>
|
|
</span>
|
|
</span>
|
|
<% end %>
|