hardlounge/client/views/msg.tpl

24 lines
626 B
Smarty
Raw Normal View History

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