2
0
Fork 0
mirror of https://github.com/thelounge/thelounge synced 2025-02-18 14:18:26 +00:00
thelounge/client/views/network.tpl

14 lines
419 B
Smarty
Raw Normal View History

2014-08-25 16:13:47 -07:00
{{#each networks}}
<section
id="network-{{id}}"
class="network name-{{slugify name}} {{#if serverOptions.NETWORK}}network-{{slugify serverOptions.NETWORK}}{{/if}} {{#unless status.connected}}not-connected{{/unless}} {{#unless status.secure}}not-secure{{/unless}}"
data-id="{{id}}"
2018-03-15 09:18:06 +00:00
data-uuid="{{uuid}}"
data-nick="{{nick}}"
data-options="{{tojson serverOptions}}"
role="region"
>
{{> chan}}
2014-08-25 16:13:47 -07:00
</section>
{{/each}}