Files
zulip/static/templates/subscription_setting_icon.hbs
Anders Kaseorg 3c3471b720 templates: Rename *.handlebars ↦ *.hbs and - ↦ _.
Tweaked by tabbott to avoid accidentally disabling the linter for
handlebars templates.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2019-07-12 21:11:03 -07:00

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>