template_user_message.html 621 Bytes
Newer Older
Lee Munkyeong committed
1 2
<div class="room_left">
  <figure>
3
    <a href="#" data-toggle="modal" data-target="#profileModal1"><img src="{{profileImage}}" onError="this.src='./img/noImage.png'"></a>
Lee Munkyeong committed
4 5 6 7 8
  </figure>
  <div class="room_left-text">
    <div class="name">{{from}}</div>
    <div class="text">{{text}}</div>
  </div>
Lee Munkyeong committed
9 10 11 12
  {{#isToday}}
  <div class="date d-flex flex-column"><span></span><span>{{createdAtTime}}</span></div>
  {{/isToday}}
  {{^isToday}}
Lee Munkyeong committed
13
  <div class="date d-flex flex-column"><span>{{createdAtDay}}</span><span>{{createdAtTime}}</span></div>
Lee Munkyeong committed
14
  {{/isToday}}
Lee Munkyeong committed
15 16
  <div class="read d-flex align-items-end"><span></span></div>
</div>