hardlounge/client/views/chan.tpl
Cldfire daa45c13fd Remove lobby close button
Without cheating and doing `display: none` this time around.
2017-12-17 22:28:56 -05:00

8 lines
409 B
Smarty

{{#each channels}}
<div data-id="{{id}}" data-target="#chan-{{id}}" data-title="{{name}}" class="chan {{type}} chan-{{slugify name}}">
<span class="badge{{#if highlight}} highlight{{/if}}">{{#if unread}}{{roundBadgeNumber unread}}{{/if}}</span>
{{#equal type "lobby"}}{{else}}<button class="close" aria-label="Close"></button>{{/equal}}
<span class="name" title="{{name}}">{{name}}</span>
</div>
{{/each}}