Remove Moris and Wordpress

This commit is contained in:
=
2019-01-25 05:07:49 -08:00
parent f7b8528bb4
commit abc8a10ed2
7 changed files with 117 additions and 160 deletions

View File

@@ -20,7 +20,6 @@ class Blog extends Component {
siteUrl="https://saburly.com/blog"
/>
<Helmet>
<script type="text/javascript">{`window.$crisp=[];window.CRISP_WEBSITE_ID="346bb060-d289-437d-bafa-3a02d470f7b6";(function(){ d=document;s=d.createElement("script"); s.src="https://client.crisp.chat/l.js"; s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})(); `}</script>
</Helmet>
<SectionIntro
@@ -67,35 +66,35 @@ class Blog extends Component {
}
}
export const query = graphql`
query blogQuery {
allWordpressPost {
edges {
node {
id
title
excerpt
status
slug
author {
name
}
date(formatString: "MMMM DD, YYYY")
featured_media {
localFile {
childImageSharp {
resolutions(width: 600, height: 300) {
src
width
height
}
}
}
}
}
}
}
}
`
//export const query = graphql`
//query blogQuery {
//allWordpressPost {
//edges {
//node {
//id
//title
//excerpt
//status
//slug
//author {
//name
//}
//date(formatString: "MMMM DD, YYYY")
//featured_media {
//localFile {
//childImageSharp {
//resolutions(width: 600, height: 300) {
//src
//width
//height
//}
//}
//}
//}
//}
//}
//}
//}
//`
export default Blog