mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
27 lines
684 B
HTML
27 lines
684 B
HTML
<template name="nav">
|
|
<header class="header {{headerClass}}">
|
|
|
|
<a href="#menu" class="mobile-only mobile-menu-button button">
|
|
{{{icon "menu"}}}
|
|
</a>
|
|
|
|
{{> Template.dynamic template=logoTemplate}}
|
|
|
|
{{#with primaryNav}}
|
|
<div class="nav primary-nav desktop-nav header-module desktop-only">
|
|
{{#each this}}
|
|
{{> UI.dynamic template=getTemplate}}
|
|
{{/each}}
|
|
</div>
|
|
{{/with}}
|
|
|
|
{{#with secondaryNav}}
|
|
<div class="nav secondary-nav desktop-nav header-module desktop-only">
|
|
{{#each this}}
|
|
{{> UI.dynamic template=getTemplate}}
|
|
{{/each}}
|
|
</div>
|
|
{{/with}}
|
|
|
|
</header>
|
|
</template>
|