This repository acts as the source code location for the Unicorn Utterances blog found here
Should be located under content/blog/post-name-here
. You should then have an index.md
file containing a frontmatter (with JS header, not YAML) portion and any related files should be in the same folder.
The author data file is located at src/data/authors.json
. To add yourself as an author in a PR for a new post, you'd add your information as a new JSON object in the array, then add a profile picture to the data
folder. The pronouns
field should match an id
in the pronouns.json
(if yours is not listed, please add it as a new value in that file, we've tried to do our best to include everything we've found!)
To start the develop server, run npm run develop
, it will then start the local instance at http://localhost:8000
. You also have the ability to checkout the GraphiQL tool at http://localhost:8000/___graphql
. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the Gatsby tutorial.