forked from cybrespace/pinafore
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			No EOL
		
	
	
		
			421 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			No EOL
		
	
	
		
			421 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <Nav :page />
 | |
| 
 | |
| <div class="container">
 | |
|   <main>
 | |
|     <slot></slot>
 | |
|   </main>
 | |
|   {{#if !$isUserLoggedIn && page === 'home'}}
 | |
|     <InformationalFooter />
 | |
|   {{/if}}
 | |
| </div>
 | |
| <script>
 | |
| 	import Nav from './Nav.html';
 | |
|   import { store } from '../_store/store'
 | |
|   import InformationalFooter from './InformationalFooter.html'
 | |
| 
 | |
| 	export default {
 | |
| 		components: {
 | |
| 			Nav,
 | |
|       InformationalFooter
 | |
| 		},
 | |
|     store: () => store
 | |
| 	}
 | |
| </script> |