{"version":3,"sources":["webpack:///./src/templates/moneygeek.js"],"names":["BlogPostMoneyGeekTemplate","props","data","errors","postMoneyGeek","React","createElement","Layout","SEO","title","description","toPlainText","_rawExcerpt","image","mainImage","Container","GraphQLErrorList","BlogPost"],"mappings":"4FAAA,wGAwDeA,UAtBmBC,IAC9B,MAAM,KAAEC,EAAI,OAAEC,GAAWF,EACnBG,EAAgBF,GAAQA,EAAKE,cAGnC,OACIC,IAAAC,cAACC,IAAM,KACFJ,GAAUE,IAAAC,cAACE,IAAG,CAACC,MAAM,kBACrBL,GAAiBC,IAAAC,cAACE,IAAG,CAACC,MAAOL,EAAcK,OAAS,WAAYC,YAAaC,YAAYP,EAAcQ,aAAcC,MAAOT,EAAcU,YAE1IX,GACGE,IAAAC,cAACS,IAAS,KACNV,IAAAC,cAACU,IAAgB,CAACb,OAAQA,KAIjCC,GAAiBC,IAAAC,cAACW,IAAab","file":"component---src-templates-moneygeek-js-8f953f914d2f059cfd35.js","sourcesContent":["import React from 'react'\nimport { graphql } from 'gatsby'\nimport Container from '../components/container'\nimport GraphQLErrorList from '../components/graphql-error-list'\nimport BlogPost from '../components/blog-post'\nimport SEO from '../components/seo'\nimport Layout from '../containers/layout'\nimport { toPlainText } from '../lib/helpers'\n\nexport const query = graphql`\n query BlogPostMoneyGeekTemplateQuery($id: String!) {\n postMoneyGeek: sanityPostMoneyGeek(id: {eq: $id}) {\n id\n publishedAt\n mainImage {\n asset {\n fluid(maxWidth: 1600) {\n ...GatsbySanityImageFluid_noBase64\n }\n _id\n }\n alt\n }\n title\n slug {\n current\n }\n postType\n _rawExcerpt(resolveReferences: {maxDepth: 5})\n body\n }\n }\n`\n\nconst BlogPostMoneyGeekTemplate = props => {\n const { data, errors } = props\n const postMoneyGeek = data && data.postMoneyGeek\n\n\n return (\n \n {errors && }\n {postMoneyGeek && }\n\n {errors && (\n \n \n \n )}\n\n {postMoneyGeek && }\n\n \n )\n}\n\nexport default BlogPostMoneyGeekTemplate\n"],"sourceRoot":""}