mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
Tweaked by tabbott to avoid accidentally disabling the linter for handlebars templates. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
23 lines
638 B
Handlebars
23 lines
638 B
Handlebars
<ul class="nav nav-list">
|
|
<li>
|
|
<a class="compose_mobile_stream_button">
|
|
<i class="fa fa-bullhorn" aria-hidden="true"></i>
|
|
{{#if is_in_private_narrow }}
|
|
{{t "New stream message" }}
|
|
{{else}}
|
|
{{t "New topic" }}
|
|
{{/if}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="compose_mobile_private_button">
|
|
<i class="fa fa-envelope" aria-hidden="true"></i>
|
|
{{#if is_in_private_narrow }}
|
|
{{t "New private message" }}
|
|
{{else}}
|
|
{{t "New private message" }}
|
|
{{/if}}
|
|
</a>
|
|
</li>
|
|
</ul>
|