12345678910111213141516171819 |
- <template name="home">
- {{> alerts}}
- <div class="homepage">
- <!--<div class="alert alert-success alert-dismissible" role="alert" style="margin-bottom: 0">-->
- <!--<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true"><i class="fa fa-times"></i></span></button>-->
- <!--<strong>Hey there!</strong> Welcome to Musare - a modern, open-source, collaborative music app.-->
- <!--</div>-->
- {{> header}}
- {{#if currentUser}}
- {{> dashboard}}
- {{else}}
- {{> dashboard}}
- {{/if}}
- <div class="push"></div>
- </div>
- {{> footer}}
- {{> bubbles}}
- </template>
|