2013-07-04 20:19:23 +02:00
|
|
|
<ul id="tab_list">
|
2017-03-06 18:17:11 +01:00
|
|
|
{{#each tabs}}
|
2019-01-30 21:50:49 +01:00
|
|
|
<li class="{{active}} {{cls}}" {{#if data}}data-name="{{data}}"{{/if}}>
|
2017-03-06 18:17:11 +01:00
|
|
|
{{#if icon}}
|
2018-07-04 02:33:37 +02:00
|
|
|
<i class="fa fa-angle-right" aria-hidden="true"></i>
|
2017-03-06 18:17:11 +01:00
|
|
|
{{/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}}
|
|
|
|
{{#if home}}
|
2018-07-04 02:33:37 +02:00
|
|
|
<i class="fa fa-home" aria-hidden="true"></i>
|
2019-01-30 21:40:58 +01:00
|
|
|
{{else}}
|
2017-03-06 18:17:11 +01:00
|
|
|
{{title}}
|
2019-01-30 21:40:58 +01:00
|
|
|
{{/if}}
|
2017-03-06 18:17:11 +01:00
|
|
|
{{/if}}
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
2016-04-08 20:42:45 +02:00
|
|
|
</ul>
|