2018-01-06 23:51:25 +00:00
|
|
|
|
<:Head>
|
2018-01-21 19:07:16 +00:00
|
|
|
|
<title>Pinafore – Home</title>
|
2018-01-06 23:51:25 +00:00
|
|
|
|
</:Head>
|
|
|
|
|
|
2018-02-13 06:06:05 +00:00
|
|
|
|
<Layout page='home'>
|
2018-01-09 02:14:21 +00:00
|
|
|
|
{{#if $isUserLoggedIn}}
|
2018-02-26 00:26:43 +00:00
|
|
|
|
{{#if $currentVerifyCredentials}}
|
2018-03-03 18:11:32 +00:00
|
|
|
|
<ComposeBox realm="home" />
|
2018-02-26 00:26:43 +00:00
|
|
|
|
{{/if}}
|
|
|
|
|
<LazyTimeline timeline='home' />
|
2018-01-09 02:14:21 +00:00
|
|
|
|
{{else}}
|
2018-02-26 00:26:43 +00:00
|
|
|
|
<NotLoggedInHome/>
|
2018-01-09 02:14:21 +00:00
|
|
|
|
{{/if}}
|
2018-01-06 23:51:25 +00:00
|
|
|
|
</Layout>
|
|
|
|
|
|
2018-01-09 02:14:21 +00:00
|
|
|
|
|
2018-01-06 23:51:25 +00:00
|
|
|
|
<script>
|
2018-01-09 02:14:21 +00:00
|
|
|
|
import Layout from './_components/Layout.html'
|
|
|
|
|
import NotLoggedInHome from './_components/NotLoggedInHome.html'
|
2018-01-28 00:35:44 +00:00
|
|
|
|
import LazyTimeline from './_components/timeline/LazyTimeline.html'
|
2018-02-27 04:55:49 +00:00
|
|
|
|
import ComposeBox from './_components/compose/ComposeBox.html'
|
2018-01-28 21:09:39 +00:00
|
|
|
|
import { store } from './_store/store.js'
|
2018-01-06 23:51:25 +00:00
|
|
|
|
|
|
|
|
|
export default {
|
2018-01-08 18:13:42 +00:00
|
|
|
|
store: () => store,
|
2018-01-06 23:51:25 +00:00
|
|
|
|
components: {
|
2018-01-09 02:14:21 +00:00
|
|
|
|
Layout,
|
2018-01-15 07:24:27 +00:00
|
|
|
|
LazyTimeline,
|
2018-02-26 00:26:43 +00:00
|
|
|
|
NotLoggedInHome,
|
2018-02-27 04:55:49 +00:00
|
|
|
|
ComposeBox
|
2018-01-06 23:51:25 +00:00
|
|
|
|
}
|
2018-01-08 06:13:15 +00:00
|
|
|
|
}
|
2018-01-08 00:12:11 +00:00
|
|
|
|
</script>
|
|
|
|
|
<style>
|
|
|
|
|
</style>
|