77 lines
1.5 KiB
Handlebars
77 lines
1.5 KiB
Handlebars
{{! Header navigation }}
|
|
|
|
{{^if isSecondary}}
|
|
<ul>
|
|
{{#foreach navigation to="3"}}
|
|
<li><a href="{{url absolute="true"}}"{{#if current}} class="is-active"{{/if}}>{{label}}</a></li>
|
|
{{/foreach}}
|
|
{{#foreach navigation from="4"}}
|
|
{{#if @first}}
|
|
<li class="is-dropdown">
|
|
<span>{{>icons/site/chevron}}</span>
|
|
<ul>
|
|
{{/if}}
|
|
<li><a href="{{url absolute="true"}}"{{#if current}} class="is-active"{{/if}}>{{label}}</a></li>
|
|
{{#if @last}}
|
|
</ul>
|
|
</li>
|
|
{{/if}}
|
|
{{/foreach}}
|
|
{{>search is_desktop=true}}
|
|
<li role="button" class="theme-toggle is-desktop">
|
|
<span class="if-is-dark">{{>icons/site/sun}}</span>
|
|
<span class="if-is-light">{{>icons/site/moon}}</span>
|
|
</li>
|
|
{{>members/login_panel}}
|
|
</ul>
|
|
{{else}}
|
|
|
|
|
|
{{! Footer navigation }}
|
|
|
|
|
|
{{#foreach navigation limit="5"}}
|
|
{{#if @first}}
|
|
<div class="footer-nav-column">
|
|
<small>
|
|
{{#if @custom.secondary_navigation_title}}
|
|
{{@custom.secondary_navigation_title}}
|
|
{{else}}
|
|
{{t "Column 1"}}
|
|
{{/if}}
|
|
</small>
|
|
<ul>
|
|
{{/if}}
|
|
<li><a href="{{url absolute="true"}}">{{label}}</a></li>
|
|
{{#if @last}}
|
|
</ul>
|
|
</div>
|
|
{{/if}}
|
|
{{/foreach}}
|
|
|
|
{{#foreach navigation limit="5" from="6"}}
|
|
{{#if @first}}
|
|
<div class="footer-nav-column">
|
|
<small> </small>
|
|
<ul>
|
|
{{/if}}
|
|
<li><a href="{{url absolute="true"}}">{{label}}</a></li>
|
|
{{#if @last}}
|
|
</ul>
|
|
</div>
|
|
{{/if}}
|
|
{{/foreach}}
|
|
|
|
{{#foreach navigation from="11"}}
|
|
{{#if @first}}
|
|
<div class="footer-nav-column">
|
|
<small> </small>
|
|
<ul>
|
|
{{/if}}
|
|
<li><a href="{{url absolute="true"}}">{{label}}</a></li>
|
|
{{#if @last}}
|
|
</ul>
|
|
</div>
|
|
{{/if}}
|
|
{{/foreach}}
|
|
{{/if}} |