Commit Graph

12 Commits

Author SHA1 Message Date
ybbarng
1995b25ba3
Get siteMetadata via GraphQL
It is important that decoupling between node code and browser code.
The 'gatsby-config.js' file must be kept in node code, but it exposed
into browser code because of the Disqus module.
To decouple this, all of the siteMetadata information is served via
GraphQL.
This commit has this change.
2018-02-06 17:45:30 +09:00
Nilan Marktanner
7c696b3da2 Fixed two typos. 2018-02-03 19:09:59 +01:00
Nilan Marktanner
6a9e8e8641
fix twitter link in post details 2018-01-30 19:39:56 +01:00
wpioneer
9cf753b94b Added Google Fonts support 2018-01-21 18:54:33 +03:00
wpioneer
35d5d7c244 New version 2018-01-21 03:03:59 +03:00
Alexander Shelepenok
b5daed447e
Merge pull request #43 from marcelabomfim/master
Disqus support
2017-10-30 19:15:44 +02:00
Alexander Shelepenok
4ad32fb854
Merge pull request #45 from ybbarng/master
Fixes a crash when a post has no tag
2017-10-30 17:57:38 +02:00
Alexander Shelepenok
498d871326
Merge branch 'master' into master 2017-10-30 17:48:08 +02:00
ybbarng
d207f68e43
Fixes a crash when a post has no tag
This commit avoids undefined.map() or null.map() is calling.

When there is no tag in a post, there are two cases in frontmatter.

1)
title: title
categories: Technical
...

2)
title: title
tags:
categories: Technical
...

Let's look at `post.node.frontmatter.tags` in both situations.
`FILE1 = /gatsby-node.js`
`FILE2 = /src/components/PostTemplateDetails/index.jsx`

In the first case, it is `undefined` in `FILE1`.
Cheking `undefined` is already implemented at FILE1#126, so undefined.map()
is not called.
But it is `null` in `FILE2#22`
and a crash will be occurred because it tries to run `null.map()`.

In the second case, it is `null` in `FILE1` and `FILE2`.
In this case, there will be two crashes in both files because both codes
try to run `null.map()`.

This commit avoids these crashes.
2017-10-30 23:25:49 +09:00
Marcela Bomfim
a0fcc33115 Adding Disqus comments on post template 2017-10-10 11:53:14 -03:00
william chou
e0b3792288 Fix hrefs for github, twitter and vk links in Links component. 2017-09-13 23:47:56 -04:00
wpioneer
a2f8738ea6 🔖 Upgrade to Gatsby 1.8.12 2017-08-20 14:43:49 +03:00