diff --git a/content/blog/post1/blog1.md b/content/blog/post1/blog1.md index 396f1c772..c5788e586 100644 --- a/content/blog/post1/blog1.md +++ b/content/blog/post1/blog1.md @@ -5,6 +5,7 @@ image: ./wild.jpg image_caption: internet tags: tech, internet, edge-cloud author: andreas_hartl +created: 2020-04-20 --- diff --git a/content/blog/post2/blog2.md b/content/blog/post2/blog2.md index f9e838932..3b36de5d9 100644 --- a/content/blog/post2/blog2.md +++ b/content/blog/post2/blog2.md @@ -5,6 +5,7 @@ tags: autonomy, equality, human image: ./unique.jpg image_caption: you author: sabrina_sadik +created: 2020-04-20 --- diff --git a/content/blog/post3/blog3.md b/content/blog/post3/blog3.md index 26f11e2cc..84aac1702 100644 --- a/content/blog/post3/blog3.md +++ b/content/blog/post3/blog3.md @@ -5,6 +5,7 @@ tags: covid, regeneration, economy image: ./corona.jpg image_caption: coronavirus author: nila_phi +created: 2020-04-20 --- diff --git a/src/pages/Blog.vue b/src/pages/Blog.vue index 1ba70cf62..fea93c8e5 100644 --- a/src/pages/Blog.vue +++ b/src/pages/Blog.vue @@ -33,14 +33,9 @@ query{ } edges { node { - name title - team - rank - excerpt image(width:800) path - timeToRead humanTime : created(format:"DD MMM YYYY") datetime : created author { diff --git a/src/pages/Search.vue b/src/pages/Search.vue index 2a51da2a7..6c6c1f21e 100644 --- a/src/pages/Search.vue +++ b/src/pages/Search.vue @@ -82,14 +82,9 @@ query { edges { node { id - name title - team - rank - excerpt image(width:800) path - timeToRead humanTime : created(format:"DD MMM YYYY") datetime : created author { diff --git a/src/templates/BlogPost.vue b/src/templates/BlogPost.vue index f31dd8739..b2335c3d9 100644 --- a/src/templates/BlogPost.vue +++ b/src/templates/BlogPost.vue @@ -115,13 +115,9 @@ query($id: ID!, $previousElement: ID!, $nextElement: ID!) { blog(id: $id) { title - name - rank path - startDate : startdate(format:"MM YYYY") image(width:1600, height:800) image_caption - excerpt content humanTime : created(format:"DD MMMM YYYY") datetime : created(format:"ddd MMM DD YYYY hh:mm:ss zZ") @@ -137,11 +133,6 @@ image path } - tags { - id - title - path - } } previous: blog(id: $previousElement) {