thelounge/client/templates/msg.tpl
Mattias Erming 66785be200 Fix bugs
2014-09-14 11:49:42 -07:00

21 lines
394 B
Smarty

{{#each messages}}
<div class="msg {{type}} {{#if self}}self{{/if}}">
<span class="time">
{{tz time}}
</span>
<span class="from">
{{#if from}}
<button class="user">{{from}}</button>
{{/if}}
</span>
<span class="text">
<em class="type">{{type}}</em>
{{#equal type "image"}}
<img src="{{text}}" class="image">
{{else}}
{{{uri text}}}
{{/equal}}
</span>
</div>
{{/each}}