pinafore/routes/local.html

35 lines
768 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}}
2018-01-21 05:30:49 +01:00
<HiddenFromSSR>
<FreeTextLayout>
<h1>Local</h1>
2018-01-07 05:44:47 +01:00
2018-01-21 05:30:49 +01:00
<p>Your local timeline will appear here when logged in.</p>
</FreeTextLayout>
</HiddenFromSSR>
2018-01-19 08:37:43 +01:00
{{/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-21 05:30:49 +01:00
import HiddenFromSSR from './_components/HiddenFromSSR'
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,
2018-01-21 05:30:49 +01:00
FreeTextLayout,
HiddenFromSSR
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>