2013-07-04 20:19:23 +02:00
|
|
|
<ul id="tab_list">
|
2017-03-06 18:17:11 +01:00
|
|
|
{{#each tabs}}
|
|
|
|
<li class="{{active}} {{cls}} {{#if home}}home-link{{/if}}" {{#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}}
|
|
|
|
{{#if home}}
|
|
|
|
<a href="{{hash}}"><i class="icon-vector-home"></i></a>
|
|
|
|
{{else}}
|
|
|
|
<a href="{{hash}}">{{title}}</a>
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
{{#if home}}
|
|
|
|
<i class="icon-vector-home"></i>
|
|
|
|
{{/if}}
|
|
|
|
{{#unless home}}
|
|
|
|
{{title}}
|
|
|
|
{{/unless}}
|
|
|
|
{{/if}}
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
2016-04-08 20:42:45 +02:00
|
|
|
</ul>
|