62 lines
1.0 KiB
Vue
62 lines
1.0 KiB
Vue
<template>
|
|
<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" />
|
|
</div>
|
|
</div>
|
|
</Layout>
|
|
</template>
|
|
|
|
<page-query>
|
|
|
|
query {
|
|
entries: allPerson (sortBy: "rank", order: DESC){
|
|
totalCount
|
|
edges {
|
|
node {
|
|
path
|
|
excerpt
|
|
content
|
|
name
|
|
rank
|
|
memberships{
|
|
id
|
|
title
|
|
path
|
|
}
|
|
bio
|
|
linkedin
|
|
websites
|
|
project_ids
|
|
countries
|
|
cities
|
|
image(width:800)
|
|
private
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
</page-query>
|
|
|
|
<script>
|
|
import Pagination from "~/components/Pagination.vue";
|
|
import PostListItem from '~/components/PostListItem.vue';
|
|
|
|
export default {
|
|
metaInfo: {
|
|
title: "People"
|
|
},
|
|
components: {
|
|
PostListItem,
|
|
Pagination
|
|
},
|
|
computed: {
|
|
baseurl: function() {
|
|
return "/people/"
|
|
}
|
|
},
|
|
};
|
|
</script>
|