2013-10-06 08:42:10 +09:00
|
|
|
<template name="layout">
|
2013-02-14 10:17:26 +09:00
|
|
|
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> css}}
|
2015-03-12 18:07:23 +09:00
|
|
|
<div class="outer-wrapper {{currentPage}} {{navLayout}}">
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> mobile_nav}}
|
2014-07-09 09:46:24 +09:00
|
|
|
<div class="inner-wrapper template-{{pageName}}">
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> nav}}
|
2014-07-09 09:46:24 +09:00
|
|
|
<div class="content-wrapper">
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> messages}}
|
2014-08-05 10:16:05 +09:00
|
|
|
{{#each heroModules}}
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> Template.dynamic template=template}}
|
2014-08-05 10:16:05 +09:00
|
|
|
{{/each}}
|
2015-03-18 17:22:43 +09:00
|
|
|
{{> yield "adminMenu"}}
|
2015-03-22 11:19:27 +09:00
|
|
|
{{> yield "postListTop"}}
|
2014-07-10 11:45:34 +09:00
|
|
|
{{> yield}}
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> footer}}
|
2014-07-09 09:46:24 +09:00
|
|
|
</div>
|
2013-10-06 08:42:10 +09:00
|
|
|
<div class="overlay hidden"></div>
|
|
|
|
</div>
|
|
|
|
{{{extraCode}}}
|
2012-10-17 17:25:10 +09:00
|
|
|
</div>
|
2015-04-13 16:29:33 +09:00
|
|
|
</template>
|