meteor-template/client/MainLayout.html
2025-12-06 15:44:43 -06:00

12 lines
323 B
HTML

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