{"version":3,"file":"component---src-templates-article-js-e44c830b4cd0cba78c6b.js","mappings":"+IAmCA,UA/BwBA,IAcQ,IAdP,KACEC,EACAC,MACEC,eAAe,MACbC,EAAK,OACLC,EAAM,QACNC,EAAO,WACPC,EAAU,SACVC,EAAQ,iBACRC,EAAgB,KAChBC,EAAI,MACJC,KAGLX,EAExB,OACEY,EAAAA,cAACC,EAAAA,EAAkB,CACjBC,gBAAiB,OACjBC,WAAYR,EACZN,KAAMA,EACNG,MAAOA,EACPC,OAAQA,EACRC,QAASA,EACTK,MAAOA,EACPK,SAAU,CAAEZ,MAAOI,EAAUS,YAAaR,EAAkBE,MAAOA,GACnED,KAAMA,GACN,C","sources":["webpack://SlatePages/./src/templates/article.js"],"sourcesContent":["import React from \"react\";\nimport PageWithCmsWrapper from \"../components/shared/page-with-cms-wrapper\";\nimport { graphql } from \"gatsby\";\n\nconst ArticleTemplate = ({\n path,\n data: {\n strapiArticle: {\n title,\n author,\n content,\n created_at,\n SeoTitle,\n MetaDescriptions,\n tags,\n image,\n },\n },\n }) => {\n\n return (\n <PageWithCmsWrapper\n breadcrumbTitle={\"Blog\"}\n createDate={created_at}\n path={path}\n title={title}\n author={author}\n content={content}\n image={image}\n seoProps={{ title: SeoTitle, description: MetaDescriptions, image: image }}\n tags={tags}\n />\n );\n};\n\nexport default ArticleTemplate;\n\n\nexport const query = graphql`\n query ArticleTemplate($id: String!) {\n strapiArticle(id: { eq: $id }) {\n id\n title\n author {\n username\n }\n content\n created_at\n SeoTitle\n MetaDescriptions\n image\n tags {\n title\n }\n }\n }\n`;\n"],"names":["_ref","path","data","strapiArticle","title","author","content","created_at","SeoTitle","MetaDescriptions","tags","image","React","PageWithCmsWrapper","breadcrumbTitle","createDate","seoProps","description"],"sourceRoot":""}