{"version":3,"sources":["webpack:///./src/templates/blog-post.js"],"names":["BlogPostTemplate","render","post","this","props","data","markdownRemark","siteTitle","site","siteMetadata","title","location","frontmatter","description","excerpt","className","thumbnail","dangerouslySetInnerHTML","__html","html","React","Component"],"mappings":"gKAMMA,E,kGACJC,OAAA,WACE,IAAMC,EAAOC,KAAKC,MAAMC,KAAKC,eACvBC,EAAYJ,KAAKC,MAAMC,KAAKG,KAAKC,aAAaC,MAEpD,OACE,kBAAC,IAAD,CAAQC,SAAUR,KAAKC,MAAMO,SAAUD,MAAOH,GAC5C,kBAAC,IAAD,CACEG,MAAOR,EAAKU,YAAYF,MACxBG,YAAaX,EAAKU,YAAYC,aAAeX,EAAKY,UAEpD,6BACEC,UAAS,iBAAkBb,EAAKU,YAAYI,WAAjB,aAE3B,4BAAQD,UAAU,uBAChB,wBAAIA,UAAU,sBAAsBb,EAAKU,YAAYF,QAGvD,yBACEK,UAAU,oBACVE,wBAAyB,CAAEC,OAAQhB,EAAKiB,QAG1C,4BAAQJ,UAAU,2B,GAvBGK,IAAMC,WAmCtBrB","file":"component---src-templates-blog-post-js-c3623dfe6df066257be9.js","sourcesContent":["import React from \"react\"\nimport { graphql } from \"gatsby\"\n\nimport Layout from \"../components/layout\"\nimport SEO from \"../components/seo\"\n\nclass BlogPostTemplate extends React.Component {\n render() {\n const post = this.props.data.markdownRemark\n const siteTitle = this.props.data.site.siteMetadata.title\n\n return (\n \n \n \n
\n

{post.frontmatter.title}

\n
\n\n \n\n \n \n
\n )\n }\n}\n\nexport default BlogPostTemplate\n\nexport const pageQuery = graphql`\n query BlogPostBySlug($slug: String!) {\n site {\n siteMetadata {\n title\n author\n }\n }\n markdownRemark(fields: { slug: { eq: $slug } }) {\n id\n excerpt(pruneLength: 160)\n html\n frontmatter {\n title\n date(formatString: \"MMMM DD, YYYY\")\n\n thumbnail {\n childImageSharp {\n fluid(maxWidth: 1360) {\n ...GatsbyImageSharpFluid\n }\n }\n }\n }\n }\n }\n`\n"],"sourceRoot":""}