mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
Tweaked by tabbott to avoid accidentally disabling the linter for handlebars templates. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
12 lines
345 B
Handlebars
12 lines
345 B
Handlebars
<div class="icon" style="background-color: {{color}}">
|
|
<div class="flex">
|
|
{{#if invite_only}}
|
|
<i class="fa fa-lock" aria-hidden="true"></i>
|
|
{{else if is_web_public}}
|
|
<i class="fa fa-globe fa-lg" aria-hidden="true"></i>
|
|
{{else}}
|
|
<span class="hashtag">#</span>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|