get_my/client/MainLayout.html

9 lines
207 B
HTML
Raw Normal View History

2022-08-04 19:50:18 -05:00
<template name="MainLayout">
{{> headerBar}}
{{#if currentUser}}
{{> Template.dynamic template=main}}
{{else}}
{{> Template.dynamic template=notLoggedIn}}
{{/if}}
</template>