template_my_message.html 714 Bytes
Newer Older
1
<div class="my_messages chat_message" data-messageid="{{messageId}}">
Lee Munkyeong committed
2
<div class="room_right">
Lee Munkyeong committed
3
  <div class="text">{{text}}</div>
Lee Munkyeong committed
4 5 6 7
  {{#isToday}}
  <div class="date d-flex flex-column"><span></span><span>{{createdAtTime}}</span></div>
  {{/isToday}}
  {{^isToday}}
8
  {{#isOtherYear}}
9
  <div class="date d-flex flex-column"><span>{{createdAtYear}} {{createdAtDay}}</span><span>{{createdAtTime}}</span></div>
10 11
  {{/isOtherYear}}
  {{^isOtherYear}}
Lee Munkyeong committed
12
  <div class="date d-flex flex-column"><span>{{createdAtDay}}</span><span>{{createdAtTime}}</span></div>
13
  {{/isOtherYear}}
Lee Munkyeong committed
14
  {{/isToday}}
Lee Munkyeong committed
15 16 17
  {{#unreadCount}}
  <div class="unread d-flex align-items-end"><span>{{unreadCount}}</span></div>
  {{/unreadCount}}
18
</div>
Lee Munkyeong committed
19
</div>