Fix imgs and Update pages title
This commit is contained in:
@@ -2,7 +2,11 @@
|
||||
<Layout>
|
||||
<div class="container sm:pxi-0 mx-auto overflow-x-hidden">
|
||||
<div class="flex flex-wrap with-large pt-8 pb-8 mx-4 sm:-mx-4">
|
||||
<PostListItem v-for="edge in $page.entries.edges" :key="edge.node.id" :record="edge.node" />
|
||||
<PostListItem
|
||||
v-for="edge in $page.entries.edges"
|
||||
:key="edge.node.id"
|
||||
:record="edge.node"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</Layout>
|
||||
@@ -44,15 +48,14 @@ query($page:Int) {
|
||||
</page-query>
|
||||
|
||||
<script>
|
||||
|
||||
import PostListItem from '~/components/PostListItem.vue';
|
||||
import PostListItem from "~/components/PostListItem.vue";
|
||||
|
||||
export default {
|
||||
metaInfo: {
|
||||
title: "Hello, world!"
|
||||
title: "Home",
|
||||
},
|
||||
components: {
|
||||
PostListItem
|
||||
}
|
||||
PostListItem,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user