From 3aa180ac1a9a1b1e94760edbbc5ed4648a45bf4e Mon Sep 17 00:00:00 2001 From: Michael <184316+muescha@users.noreply.github.com> Date: Mon, 13 Jan 2020 17:09:28 +0100 Subject: [PATCH] chore(blog): add tags for 100days (#20519) Co-authored-by: GatsbyJS Bot --- docs/blog/100days/free-hosting/index.md | 2 +- docs/blog/100days/index.md | 2 +- docs/blog/100days/start-blog/index.md | 2 +- www/src/data/tags-docs.js | 7 ++++--- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/blog/100days/free-hosting/index.md b/docs/blog/100days/free-hosting/index.md index e8630049c0071..1d53524dd51a7 100644 --- a/docs/blog/100days/free-hosting/index.md +++ b/docs/blog/100days/free-hosting/index.md @@ -1,5 +1,5 @@ --- -title: Challenge - Host Your Gatsby Site for Free +title: Challenge 2 - Host Your Gatsby Site for Free date: 2020-01-08 author: "Hashim Warren" tags: ["learning-to-code", "contest", "100-Days-of-Gatsby"] diff --git a/docs/blog/100days/index.md b/docs/blog/100days/index.md index d24ccd0c059b3..7dcc809dec344 100644 --- a/docs/blog/100days/index.md +++ b/docs/blog/100days/index.md @@ -2,7 +2,7 @@ title: 100 Days Of Gatsby - Our Guided Coding Challenge for 2020 date: 2019-12-20 author: "Hashim Warren" -tags: ["learning-to-code", "contest"] +tags: ["learning-to-code", "contest", "100-Days-of-Gatsby"] --- import EmailCaptureForm100Days from "../../../www/src/components/email-capture-form-100days" diff --git a/docs/blog/100days/start-blog/index.md b/docs/blog/100days/start-blog/index.md index 2491ebb8ed750..900500df2f63f 100644 --- a/docs/blog/100days/start-blog/index.md +++ b/docs/blog/100days/start-blog/index.md @@ -1,5 +1,5 @@ --- -title: Challenge - Track Your Coding Progress with a Blazing Fast Blog +title: Challenge 1 - Track Your Coding Progress with a Blazing Fast Blog date: 2019-12-31 author: "Hashim Warren" tags: ["learning-to-code", "contest", "100-Days-of-Gatsby"] diff --git a/www/src/data/tags-docs.js b/www/src/data/tags-docs.js index 1b3e03bd21bc4..b708de0aa30c3 100644 --- a/www/src/data/tags-docs.js +++ b/www/src/data/tags-docs.js @@ -1,6 +1,6 @@ -/* - this is a whitelist of tags that can be displayed - on the blog, the first value being the tag name, +/* + this is a whitelist of tags that can be displayed + on the blog, the first value being the tag name, and the second value a link to an existing doc on the topic, adding a new entry to this Map makes it a new possible tag for blog posts @@ -93,4 +93,5 @@ export const TAGS_AND_DOCS = new Map([ `/docs/gatsby-core-philosophy/#construct-new-higher-level-web-building-blocks`, ], [`wordpress`, `/docs/sourcing-from-wordpress/`], + [`100-Days-of-Gatsby`, `/docs/100days/`], ])