mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
22 lines
No EOL
660 B
HTML
22 lines
No EOL
660 B
HTML
<template name="layout">
|
|
|
|
{{> UI.dynamic template=css}}
|
|
<div class="outer-wrapper {{currentPage}} {{navLayout}}">
|
|
{{> UI.dynamic template=mobile_nav}}
|
|
<div class="inner-wrapper template-{{pageName}}">
|
|
{{> UI.dynamic template=nav}}
|
|
<div class="content-wrapper">
|
|
{{> UI.dynamic template=messages}}
|
|
{{#each heroModules}}
|
|
{{> UI.dynamic template=getTemplate}}
|
|
{{/each}}
|
|
{{> yield "adminMenu"}}
|
|
{{> yield "postsViewsNavZone"}}
|
|
{{> yield}}
|
|
{{> UI.dynamic template=footer}}
|
|
</div>
|
|
<div class="overlay hidden"></div>
|
|
</div>
|
|
{{{extraCode}}}
|
|
</div>
|
|
</template> |