mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 16:28:50 +00:00
9 lines
207 B
HTML
9 lines
207 B
HTML
|
|
<template name="MainLayout">
|
||
|
|
{{> headerBar}}
|
||
|
|
{{#if currentUser}}
|
||
|
|
{{> Template.dynamic template=main}}
|
||
|
|
{{else}}
|
||
|
|
{{> Template.dynamic template=notLoggedIn}}
|
||
|
|
{{/if}}
|
||
|
|
</template>
|