12 lines
323 B
HTML
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>
|