pinafore/routes/local.html

31 lines
644 B
HTML

<:Head>
<title>Local</title>
</:Head>
<Layout page='local'>
{{#if $isUserLoggedIn}}
<LazyTimeline timeline='local' />
{{else}}
<FreeTextLayout>
<h1>Local</h1>
<p>Your local timeline will appear here when logged in.</p>
</FreeTextLayout>
{{/if}}
</Layout>
<script>
import Layout from './_components/Layout.html'
import LazyTimeline from './_components/LazyTimeline.html'
import FreeTextLayout from './_components/FreeTextLayout.html'
import { store } from './_utils/store.js'
export default {
store: () => store,
components: {
Layout,
LazyTimeline,
FreeTextLayout
}
}
</script>