29 lines
799 B
HTML
29 lines
799 B
HTML
{{#if $isUserLoggedIn}}
|
|
<DynamicPageBanner title=""/>
|
|
<LazyTimeline timeline='status/{{params.statusId}}' />
|
|
{{else}}
|
|
<HiddenFromSSR>
|
|
<FreeTextLayout>
|
|
<h1>Status</h1>
|
|
|
|
<p>A status thread will appear here when logged in.</p>
|
|
</FreeTextLayout>
|
|
</HiddenFromSSR>
|
|
{{/if}}
|
|
<script>
|
|
import LazyTimeline from '../../../_components/timeline/LazyTimeline.html'
|
|
import FreeTextLayout from '../../../_components/FreeTextLayout.html'
|
|
import { store } from '../../../_store/store.js'
|
|
import HiddenFromSSR from '../../../_components/HiddenFromSSR'
|
|
import DynamicPageBanner from '../../../_components/DynamicPageBanner.html'
|
|
|
|
export default {
|
|
store: () => store,
|
|
components: {
|
|
LazyTimeline,
|
|
FreeTextLayout,
|
|
HiddenFromSSR,
|
|
DynamicPageBanner
|
|
}
|
|
}
|
|
</script> |