hardlounge/client/views/msg.tpl

24 lines
615 B
Smarty
Raw Normal View History

2016-02-23 05:38:51 -05:00
<div class="msg {{type}}{{#if self}} self{{/if}}{{#if highlight}} highlight{{/if}}">
2014-08-25 19:13:47 -04:00
<span class="time">
{{tz time}}
</span>
<span class="from">
{{#if from}}
<a href="#" class="user {{colorClass from}}" data-name="{{from}}">{{mode}}{{from}}</a>
2014-08-25 19:13:47 -04:00
{{/if}}
</span>
{{#equal type "toggle"}}
<span class="text">
2014-09-27 19:47:04 -04:00
<div class="force-newline">
2016-05-07 19:38:55 -04:00
<button id="toggle-{{id}}" class="toggle-button" aria-label="Toggle prefetched media">···</button>
2014-09-27 19:47:04 -04:00
</div>
{{#if toggle}}
{{partial "toggle"}}
{{/if}}
</span>
{{else}}
<span class="text">{{{parse text}}}</span>
{{/equal}}
2014-08-25 19:13:47 -04:00
</span>
</div>