in src/templates/Post.js [6:35]
markdownRemark(fields: {slug: {eq: $slug}}) {
frontmatter {
title
description
banner {
childImageSharp {
fluid(maxWidth: 1000) {
...GatsbyImageSharpFluid
}
}
}
tags
}
fields {
date(formatString: "MMMM DD, YYYY")
authors {
frontmatter {
name
avatar {
childImageSharp {
fixed(width: 40, height: 40) {
...GatsbyImageSharpFixed
}
}
}
}
}
}
html
}