61 lines
1.4 KiB
HTML
61 lines
1.4 KiB
HTML
|
<:Head>
|
|||
|
<title>Pinafore – Community</title>
|
|||
|
</:Head>
|
|||
|
|
|||
|
<Layout page='community'>
|
|||
|
{{#if $isUserLoggedIn}}
|
|||
|
<div class="community-page">
|
|||
|
<PageList label="Community list">
|
|||
|
<PageListItem href="/local"
|
|||
|
label="Local Timeline"
|
|||
|
icon="#fa-users"
|
|||
|
/>
|
|||
|
<PageListItem href="/federated"
|
|||
|
label="Federated Timeline"
|
|||
|
icon="#fa-globe"
|
|||
|
/>
|
|||
|
<PageListItem href="/favorites"
|
|||
|
label="Favorites"
|
|||
|
icon="#fa-star"
|
|||
|
/>
|
|||
|
</PageList>
|
|||
|
</div>
|
|||
|
{{else}}
|
|||
|
<HiddenFromSSR>
|
|||
|
<FreeTextLayout>
|
|||
|
<h1>More</h1>
|
|||
|
|
|||
|
<p>More options appear here when logged in.</p>
|
|||
|
</FreeTextLayout>
|
|||
|
</HiddenFromSSR>
|
|||
|
{{/if}}
|
|||
|
</Layout>
|
|||
|
<style>
|
|||
|
.community-page {
|
|||
|
margin: 20px;
|
|||
|
}
|
|||
|
@media (max-width: 767px) {
|
|||
|
.community-page {
|
|||
|
margin: 20px 10px;
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|
|||
|
<script>
|
|||
|
import Layout from '../_components/Layout.html'
|
|||
|
import FreeTextLayout from '../_components/FreeTextLayout.html'
|
|||
|
import { store } from '../_store/store.js'
|
|||
|
import HiddenFromSSR from '../_components/HiddenFromSSR'
|
|||
|
import PageList from './_components/PageList.html'
|
|||
|
import PageListItem from './_components/PageListItem.html'
|
|||
|
|
|||
|
export default {
|
|||
|
store: () => store,
|
|||
|
components: {
|
|||
|
Layout,
|
|||
|
FreeTextLayout,
|
|||
|
HiddenFromSSR,
|
|||
|
PageList,
|
|||
|
PageListItem
|
|||
|
}
|
|||
|
};
|
|||
|
</script>
|