{"version":3,"sources":["webpack://gatsby-starter-hello-world/./src/pages/index.js"],"names":["Home","data","allMarkdownRemark","edges","map","node","key","id","to","fields","slug","css","frontmatter","title","date"],"mappings":"gWAOe,SAASA,EAAT,GAAyB,IAATC,EAAQ,EAARA,KAC7B,OACE,QAAC,IAAD,MACE,QAAC,IAAD,OACA,+BACA,mBACGA,EAAKC,kBAAkBC,MAAMC,KAAI,gBAAGC,EAAH,EAAGA,KAAH,OAChC,eAAKC,IAAKD,EAAKE,KACb,QAAC,KAAD,CACEC,GAAIH,EAAKI,OAAOC,KAChBC,IAAG,GAKFN,EAAKO,YAAYC,MAPpB,IAO4B,KAC1B,gBACEF,IAAG,GADL,KAKKN,EAAKO,YAAYE","file":"component---src-pages-index-js-66e25a7daf41f4270716.js","sourcesContent":["import React from \"react\"\nimport { Link, graphql } from \"gatsby\"\nimport { css } from \"@emotion/react\"\nimport { rhythm } from \"../utils/typography\"\nimport Layout from \"../components/layout\"\nimport SEO from \"../components/seo\"\n\nexport default function Home({ data }) {\n return (\n \n \n

Episodes

\n
\n {data.allMarkdownRemark.edges.map(({ node }) => (\n
\n \n {node.frontmatter.title} {\" \"}\n \n - {node.frontmatter.date}\n \n \n
\n ))}\n
\n
\n )\n}\n\nexport const query = graphql`\n query {\n site {\n siteMetadata {\n title\n }\n }\n allMarkdownRemark(sort: {order: DESC, fields: [frontmatter___date]}, filter: {frontmatter: {type: {eq: \"episode\"}}}) {\n edges {\n node {\n id\n frontmatter {\n title\n description\n date(formatString: \"DD MMMM, YYYY\")\n }\n fields {\n slug\n }\n excerpt\n }\n }\n }\n }\n`\n"],"sourceRoot":""}