html mavekko

                Never    
HTML
       
<!-- item will be appened to this layout -->
<div id="log" class="slchatlayout">
</div>

<!-- chat item -->

<link href="https://fonts.googleapis.com/css?family=Prompt" rel="stylesheet">
<script type="text/template" id="chatlist_item">
  <div data-from="{from}" data-id="{messageId}">

    <span class="meta" style="color: {color}">
      <span class="badges">
      </span>
      <span class="name">{from}</span>
    </span>

    <span class="message">
             {message}
      </span>
  </div>
</script>

Raw Text