1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 15:17:37 +01:00

31 lines
644 B
HTML
Raw Normal View History

2018-01-06 20:44:47 -08:00
<:Head>
<title>Local</title>
</:Head>
<Layout page='local'>
2018-01-18 23:37:43 -08:00
{{#if $isUserLoggedIn}}
<LazyTimeline timeline='local' />
{{else}}
<FreeTextLayout>
<h1>Local</h1>
2018-01-06 20:44:47 -08:00
2018-01-18 23:37:43 -08:00
<p>Your local timeline will appear here when logged in.</p>
</FreeTextLayout>
{{/if}}
2018-01-06 20:44:47 -08:00
</Layout>
<script>
2018-01-18 23:37:43 -08:00
import Layout from './_components/Layout.html'
import LazyTimeline from './_components/LazyTimeline.html'
import FreeTextLayout from './_components/FreeTextLayout.html'
import { store } from './_utils/store.js'
2018-01-06 20:44:47 -08:00
export default {
2018-01-18 23:37:43 -08:00
store: () => store,
2018-01-06 20:44:47 -08:00
components: {
2018-01-18 23:37:43 -08:00
Layout,
LazyTimeline,
FreeTextLayout
2018-01-06 20:44:47 -08:00
}
2018-01-18 23:37:43 -08:00
}
2018-01-06 20:44:47 -08:00
</script>