mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
37 lines
942 B
HTML
37 lines
942 B
HTML
<template name="nav">
|
|
<header class="header">
|
|
|
|
<a id="mobile-menu" href="#menu" class="mobile mobile-button menu mobile-menu-button"><i class="icon-menu"></i><span>{{i18n "Menu"}}</span></a>
|
|
|
|
{{#if logo_url}}
|
|
<h1 class="logo logo-image">
|
|
<a href="/">
|
|
<img src="{{logo_url}}" alt="{{site_title}}"/>
|
|
</a>
|
|
</h1>
|
|
{{else}}
|
|
<h1 class="logo"><a href="/">{{site_title}}</a></h1>
|
|
{{/if}}
|
|
|
|
{{#if hasPrimaryNav}}
|
|
<ul class="nav site-nav desktop-nav has-dropdown">
|
|
{{#each primaryNav}}
|
|
<li>
|
|
{{> UI.dynamic template=getTemplate}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}}
|
|
|
|
{{#if hasSecondaryNav}}
|
|
<ul class="nav user-nav desktop-nav has-dropdown">
|
|
{{#each secondaryNav}}
|
|
<li>
|
|
{{> UI.dynamic template=getTemplate}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}}
|
|
|
|
</header>
|
|
</template>
|