1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-31 14:04:50 +01:00

35 lines
850 B
HTML
Raw Normal View History

2018-01-06 20:44:47 -08:00
<:Head>
2018-01-21 11:07:16 -08:00
<title>Pinafore Federated</title>
2018-01-06 20:44:47 -08:00
</:Head>
2018-01-27 08:13:28 -08:00
<Layout page='federated' virtual="true" virtualRealm="federated">
2018-01-18 23:37:43 -08:00
{{#if $isUserLoggedIn}}
<LazyTimeline timeline='federated' />
{{else}}
2018-01-20 20:30:49 -08:00
<HiddenFromSSR>
<FreeTextLayout>
<h1>Federated</h1>
2018-01-06 20:44:47 -08:00
2018-01-20 20:30:49 -08:00
<p>Your federated timeline will appear here when logged in.</p>
</FreeTextLayout>
</HiddenFromSSR>
2018-01-18 23:37:43 -08:00
{{/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'
2018-01-27 16:35:44 -08:00
import LazyTimeline from './_components/timeline/LazyTimeline.html'
2018-01-18 23:37:43 -08:00
import FreeTextLayout from './_components/FreeTextLayout.html'
2018-01-28 13:09:39 -08:00
import { store } from './_store/store.js'
2018-01-20 20:30:49 -08:00
import HiddenFromSSR from './_components/HiddenFromSSR'
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,
2018-01-20 20:30:49 -08:00
FreeTextLayout,
HiddenFromSSR
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>