get_my/client/MainLayout.html
Brian McGonagill 750811a81f initial commit
2022-08-04 19:50:18 -05:00

8 lines
207 B
HTML

<template name="MainLayout">
{{> headerBar}}
{{#if currentUser}}
{{> Template.dynamic template=main}}
{{else}}
{{> Template.dynamic template=notLoggedIn}}
{{/if}}
</template>