Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/blog/2017-07-19-creating-a-blog-with-gatsby/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ Nothing super complex yet! We're using the `createPages` API (which Gatsby will

### Querying for posts

```javascript{8-28}
```javascript{8-31}
const path = require('path');

exports.createPages = ({ boundActionCreators, graphql }) => {
Expand Down Expand Up @@ -305,7 +305,7 @@ We now have our query written, but we haven't yet programatically created the pa

### Creating the pages

```javascript{29-49}
```javascript{32-39}
const path = require('path');

exports.createPages = ({ boundActionCreators, graphql }) => {
Expand Down