2018-05-02 02:05:36 +02:00
|
|
|
|
<svelte:head>
|
2018-02-08 07:49:50 +01:00
|
|
|
|
<title>Pinafore – Community</title>
|
2018-05-02 02:05:36 +02:00
|
|
|
|
</svelte:head>
|
2018-02-08 07:49:50 +01:00
|
|
|
|
<Layout page='community'>
|
2018-05-02 02:05:36 +02:00
|
|
|
|
<LazyPage {pageComponent} {params} />
|
2018-02-08 07:49:50 +01:00
|
|
|
|
</Layout>
|
|
|
|
|
<script>
|
|
|
|
|
import Layout from '../_components/Layout.html'
|
2018-03-14 01:14:57 +01:00
|
|
|
|
import LazyPage from '../_components/LazyPage.html'
|
|
|
|
|
import pageComponent from '../_pages/community/index.html'
|
2018-02-08 07:49:50 +01:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
Layout,
|
2018-03-14 01:14:57 +01:00
|
|
|
|
LazyPage
|
|
|
|
|
},
|
|
|
|
|
data: () => ({
|
|
|
|
|
pageComponent
|
|
|
|
|
})
|
|
|
|
|
}
|
2018-02-08 07:49:50 +01:00
|
|
|
|
</script>
|