pinafore/routes/local.html

31 lines
644 B
HTML
Raw Normal View History

2018-01-07 05:44:47 +01:00
<:Head>
<title>Local</title>
</:Head>
<Layout page='local'>
2018-01-19 08:37:43 +01:00
{{#if $isUserLoggedIn}}
<LazyTimeline timeline='local' />
{{else}}
<FreeTextLayout>
<h1>Local</h1>
2018-01-07 05:44:47 +01:00
2018-01-19 08:37:43 +01:00
<p>Your local timeline will appear here when logged in.</p>
</FreeTextLayout>
{{/if}}
2018-01-07 05:44:47 +01:00
</Layout>
<script>
2018-01-19 08:37:43 +01: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-07 05:44:47 +01:00
export default {
2018-01-19 08:37:43 +01:00
store: () => store,
2018-01-07 05:44:47 +01:00
components: {
2018-01-19 08:37:43 +01:00
Layout,
LazyTimeline,
FreeTextLayout
2018-01-07 05:44:47 +01:00
}
2018-01-19 08:37:43 +01:00
}
2018-01-07 05:44:47 +01:00
</script>