mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-09-01 11:21:31 +09:00
df76a227dc
First open source release of Campfire 🎉
20 lines
732 B
Plaintext
20 lines
732 B
Plaintext
<% if @room == Room.original && !@room.messages.paged? %>
|
|
<div id="system_welcome" class="message message--formatted txt-align-center center">
|
|
<div class="message__body center">
|
|
<div class="message__body-content position-relative">
|
|
<%= account_logo_tag style: "center margin-block-end txt-large" %>
|
|
<div class="flex align-center gap">
|
|
<div class="system-welcome--translation">
|
|
<%= translation_button(:invite_message) %>
|
|
</div>
|
|
<p>
|
|
<strong>Welcome to Campfire</strong><br>
|
|
To invite people to chat, share the join link below.
|
|
</p>
|
|
</div>
|
|
<%= render "accounts/invite" %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|