zulip/static/templates/tab_bar.handlebars
Tim Abbott 3bba0cc927 Move zephyr/static to just static.
It's not really a part of the server (aka the rest of zephyr/).

(imported from commit 27f6b6b064938ad927075a68d873e4b68710d279)
2013-07-29 12:11:26 -04:00

15 lines
418 B
Handlebars

<ul id="tab_list">
{{#each tabs}}
<li class="{{active}} {{cls}}" {{#if data}}data-name="{{data}}"{{/if}}>
{{#if icon}}
<i class="icon-vector-narrow icon-vector-small"></i>
{{/if}}
{{! Most tabs are links, but some are not since we don't have a narrow for them (e.g. Search) }}
{{#if hash}}
<a href="{{hash}}">{{title}}</a>
{{else}}
{{title}}
{{/if}}
</li>
{{/each}}
</ul>