{"version":3,"file":"component---src-pages-index-jsx-03427330bdfe48f9df67.js","mappings":"2JAuCA,IAlCc,SAAC,GAAD,IAAGA,EAAH,EAAGA,MAAH,OACZ,sBAAIC,UAAU,cACXD,EAAME,KAAI,SAAAC,GACT,OACE,sBAAIC,IAAKD,EAAKE,YAAYC,MAAOL,UAAU,aACzC,2BAASM,WAAS,EAACC,SAAS,6BAC1B,8BACE,0BACE,gBAAC,EAAAC,KAAD,CAAMC,GAAIP,EAAKQ,OAAOC,KAAMC,SAAS,OACnC,wBAAMA,SAAS,YAAYV,EAAKE,YAAYC,SAGhD,6BAAQH,EAAKE,YAAYS,KAAzB,OAAmCX,EAAKE,YAAYU,QAAQb,KAAI,gBAAGc,EAAH,EAAGA,KAAML,EAAT,EAASA,OAAT,OAAsB,gBAAC,EAAAF,KAAD,CAAML,IAAKY,EAAMN,GAAIC,EAAOC,MAAOI,MAAcC,QAAO,SAACC,EAAUC,GAAX,OAAuBC,MAAMC,QAAQH,GAAd,kBAA8BA,GAA9B,CAAwC,KAAMC,IAAW,CAACD,EAAU,KAAMC,QAEjP,+BACE,qBACEG,wBAAyB,CACvBC,OAAQpB,EAAKE,YAAYmB,aAAerB,EAAKsB,SAE/CZ,SAAS,iBAGb,8BACE,6BACE,gBAAC,EAAAJ,KAAD,CAAMC,GAAIP,EAAKQ,OAAOC,MAAtB,uB,uECGhB,UAzBkB,SAAC,GAAwB,IAAD,EAArBc,EAAqB,EAArBA,KAAMC,EAAe,EAAfA,SACnBC,GAAY,UAAAF,EAAKG,KAAKC,oBAAV,eAAwBxB,QAAxB,QACZN,EAAQ0B,EAAKK,kBAAkBC,MAErC,OAAqB,IAAjBhC,EAAMiC,OAEN,gBAAC,IAAD,CAAQN,SAAUA,EAAUrB,MAAOsB,GACjC,gBAAC,IAAD,CAAKtB,MAAM,cACX,uLAUJ,gBAAC,IAAD,CAAQqB,SAAUA,EAAUrB,MAAOsB,GACjC,gBAAC,IAAD,CAAKtB,MAAM,cACX,gBAAC,IAAD,CAAON,MAAOA","sources":["webpack://blog-golawski-it/./src/components/posts.jsx","webpack://blog-golawski-it/./src/pages/index.jsx"],"sourcesContent":["import React from \"react\"\nimport { Link } from \"gatsby\"\n\nimport \"./posts.scss\"\n\nconst Posts = ({ posts }) => (\n
    \n {posts.map(post => {\n return (\n
  1. \n
    \n
    \n

    \n \n {post.frontmatter.title}\n \n

    \n {post.frontmatter.date} by {post.frontmatter.authors.map(({ name, fields }) => {name}).reduce((previous, current) => Array.isArray(previous) ? [...previous, \", \", current] : [previous, \", \", current])}\n
    \n
    \n \n
    \n \n
    \n
  2. \n )\n })}\n
\n)\n\nexport default Posts\n","import React from \"react\"\nimport { graphql } from \"gatsby\"\n\nimport Layout from \"../components/layout\"\nimport Posts from \"../components/posts\"\nimport SEO from \"../components/seo\"\n\nconst BlogIndex = ({ data, location }) => {\n const siteTitle = data.site.siteMetadata?.title || `Title`\n const posts = data.allMarkdownRemark.nodes\n\n if (posts.length === 0) {\n return (\n \n \n

\n No blog posts found. Add markdown posts to \"content/blog\" (or the\n directory you specified for the \"gatsby-source-filesystem\" plugin in\n gatsby-config.js).\n

\n
\n )\n }\n\n return (\n \n \n \n \n )\n}\n\nexport default BlogIndex\n\nexport const pageQuery = graphql`\n query {\n site {\n siteMetadata {\n title\n }\n }\n allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) {\n nodes {\n excerpt\n fields {\n slug\n }\n frontmatter {\n date(formatString: \"MMMM DD, YYYY\")\n title\n description\n authors {\n name\n fields {\n slug\n }\n }\n }\n }\n }\n }\n`\n"],"names":["posts","className","map","post","key","frontmatter","title","itemScope","itemType","Link","to","fields","slug","itemProp","date","authors","name","reduce","previous","current","Array","isArray","dangerouslySetInnerHTML","__html","description","excerpt","data","location","siteTitle","site","siteMetadata","allMarkdownRemark","nodes","length"],"sourceRoot":""}