2014-06-23 11:40:21 +09:00
|
|
|
<template name="nav">
|
2015-02-11 18:02:56 +09:00
|
|
|
<header class="header {{headerClass}}">
|
2014-06-23 11:40:21 +09:00
|
|
|
|
2014-08-20 17:03:54 +09:00
|
|
|
<a href="#menu" class="mobile-only mobile-menu-button button">
|
2015-03-24 17:03:37 +09:00
|
|
|
{{{icon "menu"}}}
|
2014-08-20 17:03:54 +09:00
|
|
|
</a>
|
2014-06-23 11:40:21 +09:00
|
|
|
|
2015-03-20 18:31:49 +09:00
|
|
|
{{> Template.dynamic template=logoTemplate}}
|
2014-08-12 16:16:44 +09:00
|
|
|
|
2015-03-20 18:31:49 +09:00
|
|
|
{{#with primaryNav}}
|
|
|
|
<div class="nav primary-nav desktop-nav header-module desktop-only">
|
|
|
|
{{#each this}}
|
|
|
|
{{> UI.dynamic template=getTemplate}}
|
2014-08-15 11:51:30 +09:00
|
|
|
{{/each}}
|
2015-03-20 18:31:49 +09:00
|
|
|
</div>
|
|
|
|
{{/with}}
|
2014-06-23 11:40:21 +09:00
|
|
|
|
2015-03-20 18:31:49 +09:00
|
|
|
{{#with secondaryNav}}
|
|
|
|
<div class="nav secondary-nav desktop-nav header-module desktop-only">
|
|
|
|
{{#each this}}
|
|
|
|
{{> UI.dynamic template=getTemplate}}
|
2014-08-15 11:51:30 +09:00
|
|
|
{{/each}}
|
2015-03-20 18:31:49 +09:00
|
|
|
</div>
|
|
|
|
{{/with}}
|
2015-03-24 14:30:04 +09:00
|
|
|
|
2014-06-23 11:40:21 +09:00
|
|
|
</header>
|
|
|
|
</template>
|