Blame view

client/templates/layouts/default.html 393 Bytes
77001041a   Ryan Glover   add support for F...
1
  <template name="default">
c8b07469e   Ryan Glover   Add themeteorchef...
2
  	{{>bertAlert}}
39a8af161   Ryan Glover   Add bootstrap hea...
3
4
  	{{>header}}
  	<div class="container">
d4ce6ca83   Ryan Glover   swap route-based ...
5
6
7
8
9
10
11
12
13
14
15
16
17
  		{{#if loggingIn}}
  			{{> loading}}
  		{{else}}
  			{{#if authenticated}}
  				{{#unless redirectAuthenticated}}
  					{{> Template.dynamic template=yield}}
  				{{/unless}}
  			{{else}}
  				{{#unless redirectPublic}}
  					{{> Template.dynamic template=yield}}
  				{{/unless}}
  			{{/if}}
  		{{/if}}
39a8af161   Ryan Glover   Add bootstrap hea...
18
  	</div>
d1f4dbea8   Ryan Glover   Additional README...
19
  </template>