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

30 lines
548 B
HTML
Raw Normal View History

2018-01-06 15:51:25 -08:00
<:Head>
2018-01-08 18:14:21 -08:00
<title>Pinafore</title>
2018-01-06 15:51:25 -08:00
</:Head>
<Layout page='home'>
2018-01-08 18:14:21 -08:00
{{#if $isUserLoggedIn}}
2018-01-14 23:24:27 -08:00
<LazyTimeline target='home' />
2018-01-08 18:14:21 -08:00
{{else}}
<NotLoggedInHome/>
{{/if}}
2018-01-06 15:51:25 -08:00
</Layout>
2018-01-08 18:14:21 -08:00
2018-01-06 15:51:25 -08:00
<script>
2018-01-08 18:14:21 -08:00
import Layout from './_components/Layout.html'
import NotLoggedInHome from './_components/NotLoggedInHome.html'
2018-01-14 23:24:27 -08:00
import LazyTimeline from './_components/LazyTimeline.html'
2018-01-08 18:14:21 -08:00
import { store } from './_utils/store.js'
2018-01-06 15:51:25 -08:00
export default {
store: () => store,
2018-01-06 15:51:25 -08:00
components: {
2018-01-08 18:14:21 -08:00
Layout,
2018-01-14 23:24:27 -08:00
LazyTimeline,
2018-01-08 18:14:21 -08:00
NotLoggedInHome
2018-01-06 15:51:25 -08:00
}
2018-01-07 22:13:15 -08:00
}
2018-01-07 16:12:11 -08:00
</script>
<style>
</style>