pinafore/routes/index.html

35 line
No EOL
775 B
HTML
原始文件 Blame 文件歷史

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<:Head>
<title>Pinafore Home</title>
</:Head>
<Layout page='home'>
{{#if $isUserLoggedIn}}
{{#if $currentVerifyCredentials}}
<ComposeBox verifyCredentials="{{$currentVerifyCredentials}}"/>
{{/if}}
<LazyTimeline timeline='home' />
{{else}}
<NotLoggedInHome/>
{{/if}}
</Layout>
<script>
import Layout from './_components/Layout.html'
import NotLoggedInHome from './_components/NotLoggedInHome.html'
import LazyTimeline from './_components/timeline/LazyTimeline.html'
import ComposeBox from './_components/compose/ComposeBox.html'
import { store } from './_store/store.js'
export default {
store: () => store,
components: {
Layout,
LazyTimeline,
NotLoggedInHome,
ComposeBox
}
}
</script>
<style>
</style>