chat_message.html 365 B

12345678
  1. <!-- simple template that displays a message -->
  2. <template name="chat_message">
  3. <div class="row">
  4. <div class="col-xs-1 thumbnail"><img src="/{{ other.profile.avatar }}" alt="Avatar of user {{ other.profile.username }}" /></div>
  5. <div class="col-md-1">{{ other.profile.username }}</div>
  6. <div class="col-md-10">{{ text.text }}</div>
  7. </div>
  8. </template>