28 lines
893 B
Smarty
28 lines
893 B
Smarty
{{#each channels}}
|
|
<div
|
|
class="chan {{type}} chan-{{slugify name}}"
|
|
data-id="{{id}}"
|
|
data-target="#chan-{{id}}"
|
|
role="tab"
|
|
aria-label="{{name}}"
|
|
aria-controls="chan-{{id}}"
|
|
aria-selected="false"
|
|
>
|
|
{{#equal type "lobby"}}
|
|
<span class="add-channel-tooltip tooltipped tooltipped-w tooltipped-no-touch" aria-label="Join a channel…" data-alt-label="Cancel">
|
|
<button class="add-channel" aria-label="Join a channel…" data-id="{{id}}"></button>
|
|
</span>
|
|
{{/equal}}
|
|
<span class="badge{{#if highlight}} highlight{{/if}}">{{#if unread}}{{roundBadgeNumber unread}}{{/if}}</span>
|
|
{{#notEqual type "lobby"}}
|
|
<span class="close-tooltip tooltipped tooltipped-w" aria-label="Close">
|
|
<button class="close" aria-label="Close"></button>
|
|
</span>
|
|
{{/notEqual}}
|
|
<span class="name" title="{{name}}">{{name}}</span>
|
|
</div>
|
|
{{#equal type "lobby"}}
|
|
{{> join_channel}}
|
|
{{/equal}}
|
|
{{/each}}
|