Skip to content
This repository was archived by the owner on Mar 10, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/posts/2017-10-01--two-things-are-infinite/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Two things are infinite the universe and human stupidity
category: "sayings"
category: ["sayings"]
cover: photo-1490474418585-ba9bad8fd0ea.jpg
author: greg lobinski
---
Expand Down
2 changes: 1 addition & 1 deletion content/posts/2017-10-03--be-who-you-are/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Be who you are and say what you feel
category: "sayings"
category: ["sayings"]
cover: photo-1489824904134-891ab64532f1.jpg
author: greg lobinski
---
Expand Down
2 changes: 1 addition & 1 deletion content/posts/2017-10-05--you-only-live-once/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: You only live once
category: "sayings"
category: ["sayings"]
cover: photo-1456518563096-0ff5ee08204e.jpg
author: greg lobinski
---
Expand Down
2 changes: 1 addition & 1 deletion content/posts/2017-10-07--people-will-forget/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: People will forget what you said, people will forget what you did
category: "sayings"
category: ["sayings"]
cover: photo-1489900464632-5f5907edda24.jpg
author: greg lobinski
---
Expand Down
2 changes: 1 addition & 1 deletion content/posts/2017-10-09--i-am-so-clever/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: I am so clever that sometimes I don't understand a single word of what I am saying
category: "testimonies"
category: ["testimonies"]
cover: photo-1507124484497-b7f446e65519.jpg
author: greg lobinski
---
Expand Down
2 changes: 1 addition & 1 deletion content/posts/2017-10-17--i-have-not-failed/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: I have not failed. I've just found 10,000 ways that won't work
category: "testimonies"
category: ["testimonies","sayings"]
cover: photo-1463852247062-1bbca38f7805.jpg
author: greg lobinski
---
Expand Down
2 changes: 1 addition & 1 deletion content/posts/2017-10-19--i-may-not-have-gone/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: I may not have gone where I intended to go
category: "testimonies"
category: ["testimonies","general"]
cover: photo-1507915600431-5292809c5ab7.jpg
author: greg lobinski
---
Expand Down
2 changes: 1 addition & 1 deletion content/posts/2017-10-21--like-nonsense/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: I like nonsense, it wakes up the brain cells
category: "testimonies"
category: ["testimonies"]
cover: photo-1465070845512-2b2dbdc6df66.jpg
author: greg lobinski
---
Expand Down
2 changes: 1 addition & 1 deletion content/posts/draft-post/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: This is a draft post
category: "sayings"
category: ["sayings"]
cover: photo-1490474418585-ba9bad8fd0ea.jpg
author: greg lobinski
---
Expand Down
4 changes: 3 additions & 1 deletion gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ exports.createPages = ({ graphql, actions }) => {
} = edge;

if (category && category !== null) {
categorySet.add(category);
category.forEach(tag => {
categorySet.add(tag);
})
}
});

Expand Down
Loading