Vulcan/client/views/common/layout.html

22 lines
660 B
HTML
Raw Normal View History

<template name="layout">
2013-02-14 10:17:26 +09:00
{{> UI.dynamic template=css}}
2015-03-12 18:07:23 +09:00
<div class="outer-wrapper {{currentPage}} {{navLayout}}">
2014-07-05 11:42:28 +09:00
{{> UI.dynamic template=mobile_nav}}
2014-07-09 09:46:24 +09:00
<div class="inner-wrapper template-{{pageName}}">
2014-07-05 11:42:28 +09:00
{{> UI.dynamic template=nav}}
2014-07-09 09:46:24 +09:00
<div class="content-wrapper">
2014-12-06 17:49:17 +09:00
{{> UI.dynamic template=messages}}
{{#each heroModules}}
{{> UI.dynamic template=getTemplate}}
{{/each}}
2015-03-18 17:22:43 +09:00
{{> yield "adminMenu"}}
2015-03-22 09:42:58 +09:00
{{> yield "postsViewsNavZone"}}
2014-07-10 11:45:34 +09:00
{{> yield}}
2014-07-09 09:46:24 +09:00
{{> UI.dynamic template=footer}}
</div>
<div class="overlay hidden"></div>
</div>
{{{extraCode}}}
2012-10-17 17:25:10 +09:00
</div>
2012-09-20 10:30:55 +10:00
</template>