Vulcan/client/views/common/layout.html
2014-08-12 16:16:44 +09:00

21 lines
No EOL
619 B
HTML

<template name="layout">
{{> UI.dynamic template=css}}
<div class="outer-wrapper {{currentPage}}">
{{> UI.dynamic template=mobile_nav}}
<div class="inner-wrapper template-{{pageName}}">
{{> UI.dynamic template=nav}}
<div class="content-wrapper">
{{> UI.dynamic template=error}}
{{> UI.dynamic template=notifications}}
{{#each heroModules}}
{{> UI.dynamic template=getTemplate}}
{{/each}}
{{> yield}}
{{> UI.dynamic template=footer}}
</div>
<div class="overlay hidden"></div>
</div>
{{{extraCode}}}
</div>
</template>