overview
This commit is contained in:
@@ -10,6 +10,11 @@
|
|||||||
"link": "/people",
|
"link": "/people",
|
||||||
"external": false
|
"external": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Overview",
|
||||||
|
"link": "/overview",
|
||||||
|
"external": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "News",
|
"name": "News",
|
||||||
"link": "/news",
|
"link": "/news",
|
||||||
|
|||||||
@@ -87,6 +87,16 @@ module.exports = function (api) {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
api.createPages(({ createPage }) => {
|
||||||
|
createPage({
|
||||||
|
path: '/overview',
|
||||||
|
component: './src/templates/Overview.vue',
|
||||||
|
context: {
|
||||||
|
private: private
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
api.createPages(async ({
|
api.createPages(async ({
|
||||||
graphql,
|
graphql,
|
||||||
createPage
|
createPage
|
||||||
|
|||||||
67
src/templates/Overview.vue
Normal file
67
src/templates/Overview.vue
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<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 ($private: Int){
|
||||||
|
entries: allProject (sortBy: "rank", order: DESC, filter: { private: { ne: $private }}){
|
||||||
|
totalCount
|
||||||
|
edges {
|
||||||
|
node {
|
||||||
|
title
|
||||||
|
path
|
||||||
|
members {
|
||||||
|
id
|
||||||
|
name
|
||||||
|
image(width:64, height:64, fit:inside)
|
||||||
|
path
|
||||||
|
},
|
||||||
|
tags {
|
||||||
|
id
|
||||||
|
title
|
||||||
|
path
|
||||||
|
}
|
||||||
|
rank
|
||||||
|
linkedin
|
||||||
|
startDate : startdate(format:"MM YYYY")
|
||||||
|
humanTime : created(format:"DD MMMM YYYY")
|
||||||
|
datetime : created(format:"ddd MMM DD YYYY hh:mm:ss zZ")
|
||||||
|
status
|
||||||
|
excerpt
|
||||||
|
image(width:800)
|
||||||
|
path
|
||||||
|
timeToRead
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</page-query>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import PostListItem from '~/components/PostListItem.vue';
|
||||||
|
import Pagination from "~/components/Pagination.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
metaInfo: {
|
||||||
|
title: "Projects"
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
PostListItem,
|
||||||
|
Pagination
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
baseurl: function() {
|
||||||
|
return "/projects/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user