31 lines
		
	
	
	
		
			835 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			31 lines
		
	
	
	
		
			835 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{{#if $isUserLoggedIn}}
							 | 
						||
| 
								 | 
							
								{{#if $pinnedPage !== '/local'}}
							 | 
						||
| 
								 | 
							
								  <DynamicPageBanner title="Local Timeline" icon="#fa-users"/>
							 | 
						||
| 
								 | 
							
								{{/if}}
							 | 
						||
| 
								 | 
							
								<LazyTimeline timeline='local' />
							 | 
						||
| 
								 | 
							
								{{else}}
							 | 
						||
| 
								 | 
							
								<HiddenFromSSR>
							 | 
						||
| 
								 | 
							
								  <FreeTextLayout>
							 | 
						||
| 
								 | 
							
								    <h1>Local</h1>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <p>Your local timeline will appear here when logged in.</p>
							 | 
						||
| 
								 | 
							
								  </FreeTextLayout>
							 | 
						||
| 
								 | 
							
								</HiddenFromSSR>
							 | 
						||
| 
								 | 
							
								{{/if}}
							 | 
						||
| 
								 | 
							
								<script>
							 | 
						||
| 
								 | 
							
								  import LazyTimeline from '.././_components/timeline/LazyTimeline.html'
							 | 
						||
| 
								 | 
							
								  import FreeTextLayout from '.././_components/FreeTextLayout.html'
							 | 
						||
| 
								 | 
							
								  import { store } from '.././_store/store.js'
							 | 
						||
| 
								 | 
							
								  import HiddenFromSSR from '.././_components/HiddenFromSSR'
							 | 
						||
| 
								 | 
							
								  import DynamicPageBanner from '.././_components/DynamicPageBanner.html'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  export default {
							 | 
						||
| 
								 | 
							
								    store: () => store,
							 | 
						||
| 
								 | 
							
								    components: {
							 | 
						||
| 
								 | 
							
								      LazyTimeline,
							 | 
						||
| 
								 | 
							
								      FreeTextLayout,
							 | 
						||
| 
								 | 
							
								      HiddenFromSSR,
							 | 
						||
| 
								 | 
							
								      DynamicPageBanner
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								</script>
							 |