1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 06:47:19 +01:00

30 lines
568 B
HTML
Raw Normal View History

2018-01-06 15:51:25 -08:00
<:Head>
2018-01-21 11:07:16 -08:00
<title>Pinafore Home</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-18 23:37:43 -08:00
<LazyTimeline timeline='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-27 16:35:44 -08:00
import LazyTimeline from './_components/timeline/LazyTimeline.html'
2018-01-28 13:09:39 -08:00
import { store } from './_store/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>