kopia lustrzana https://github.com/nolanlawson/pinafore
35 wiersze
826 B
HTML
35 wiersze
826 B
HTML
<:Head>
|
|
<title>Pinafore – Local</title>
|
|
</:Head>
|
|
|
|
<Layout page='local' virtual="true" virtualRealm="local">
|
|
{{#if $isUserLoggedIn}}
|
|
<LazyTimeline timeline='local' />
|
|
{{else}}
|
|
<HiddenFromSSR>
|
|
<FreeTextLayout>
|
|
<h1>Local</h1>
|
|
|
|
<p>Your local timeline will appear here when logged in.</p>
|
|
</FreeTextLayout>
|
|
</HiddenFromSSR>
|
|
{{/if}}
|
|
</Layout>
|
|
|
|
<script>
|
|
import Layout from './_components/Layout.html'
|
|
import LazyTimeline from './_components/timeline/LazyTimeline.html'
|
|
import FreeTextLayout from './_components/FreeTextLayout.html'
|
|
import { store } from './_store/store.js'
|
|
import HiddenFromSSR from './_components/HiddenFromSSR'
|
|
|
|
export default {
|
|
store: () => store,
|
|
components: {
|
|
Layout,
|
|
LazyTimeline,
|
|
FreeTextLayout,
|
|
HiddenFromSSR
|
|
}
|
|
}
|
|
</script> |