removed projectlistitem

This commit is contained in:
hamdy
2020-11-10 17:27:40 +02:00
parent 6991f8983c
commit c8c2d9d882
3 changed files with 6 additions and 74 deletions

View File

@@ -2,7 +2,7 @@
<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">
<ProjectListItem 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>
@@ -46,14 +46,14 @@ query($page:Int) {
<script>
import ProjectListItem from '~/components/ProjectListItem.vue';
import PostListItem from '~/components/PostListItem.vue';
export default {
metaInfo: {
title: "Hello, world!"
},
components: {
ProjectListItem
PostListItem
}
};
</script>