35 lines
		
	
	
		
			No EOL
		
	
	
		
			791 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			No EOL
		
	
	
		
			791 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <:Head>
 | ||
| 	<title>Pinafore – Home</title>
 | ||
| </:Head>
 | ||
| 
 | ||
| <Layout page='home'>
 | ||
|   {{#if $isUserLoggedIn}}
 | ||
|     {{#if $currentVerifyCredentials}}
 | ||
|       <LiteComposeBox verifyCredentials="{{$currentVerifyCredentials}}"/>
 | ||
|     {{/if}}
 | ||
|     <LazyTimeline timeline='home' />
 | ||
|   {{else}}
 | ||
|     <NotLoggedInHome/>
 | ||
|   {{/if}}
 | ||
| </Layout>
 | ||
| 
 | ||
| 
 | ||
| <script>
 | ||
|   import Layout from './_components/Layout.html'
 | ||
|   import NotLoggedInHome from './_components/NotLoggedInHome.html'
 | ||
|   import LazyTimeline from './_components/timeline/LazyTimeline.html'
 | ||
|   import LiteComposeBox from './_components/compose/LiteComposeBox.html'
 | ||
|   import { store } from './_store/store.js'
 | ||
| 
 | ||
| 	export default {
 | ||
| 		store: () => store,
 | ||
| 		components: {
 | ||
| 		  Layout,
 | ||
|       LazyTimeline,
 | ||
| 			NotLoggedInHome,
 | ||
|       LiteComposeBox
 | ||
| 		}
 | ||
| 	}
 | ||
| </script>
 | ||
| <style>
 | ||
| </style> |