Compare commits
No commits in common. "e5b647ddbc724dea7e2d3b822a068b9d25c8dfba" and "ba7721a1dd0f637a0384d292967c2b1a27096677" have entirely different histories.
e5b647ddbc
...
ba7721a1dd
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Deployment Reflection
|
title: Deployment Reflection
|
||||||
date: "2020-01-21T18:04:37.149Z"
|
date: "2020-01-21T18:04:37.149Z"
|
||||||
description: Technologies used for building and running the Blog
|
description: Deployment of the Blog
|
||||||
---
|
---
|
||||||
|
|
||||||
It took some time, but I figured as I only got around to deploy the blog just now, I could use the opportunity and just document what I'm doing. So here is a blog post describing how the blog it is hosted in is built and deployed.
|
It took some time, but I figured as I only got around to deploy the blog just now, I could use the opportunity and just document what I'm doing. So here is a blog post describing how the blog it is hosted in is built and deployed.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Adding Content
|
title: Adding Content
|
||||||
date: "2020-01-27T15:38:26.882Z"
|
date: "2020-01-27T15:38:26.882Z"
|
||||||
description: How I automated everything between writing an article and updating the blog itself
|
description: Bring the content online
|
||||||
---
|
---
|
||||||
|
|
||||||
# Writing
|
# Writing
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,8 @@ module.exports = {
|
||||||
siteMetadata: {
|
siteMetadata: {
|
||||||
title: `While False Blog`,
|
title: `While False Blog`,
|
||||||
author: `Stephan Dörfler`,
|
author: `Stephan Dörfler`,
|
||||||
description: `Self-built developer blog based on gatsby.`,
|
description: `Self-built blog based on gatsby.`,
|
||||||
url: `https://blog.while-false.de`,
|
siteUrl: `https://blog.while-false.de/`,
|
||||||
|
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ function SEO({ description, lang, meta, title }) {
|
||||||
title
|
title
|
||||||
description
|
description
|
||||||
author
|
author
|
||||||
type
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -27,7 +26,6 @@ function SEO({ description, lang, meta, title }) {
|
||||||
)
|
)
|
||||||
|
|
||||||
const metaDescription = description || site.siteMetadata.description
|
const metaDescription = description || site.siteMetadata.description
|
||||||
const metaType = `website` || site.siteMetadata.type
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Helmet
|
<Helmet
|
||||||
|
|
@ -51,7 +49,7 @@ function SEO({ description, lang, meta, title }) {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
property: `og:type`,
|
property: `og:type`,
|
||||||
content: metaType,
|
content: `website`,
|
||||||
},
|
},
|
||||||
].concat(meta)}
|
].concat(meta)}
|
||||||
>
|
>
|
||||||
|
|
@ -63,7 +61,7 @@ function SEO({ description, lang, meta, title }) {
|
||||||
SEO.defaultProps = {
|
SEO.defaultProps = {
|
||||||
lang: `en`,
|
lang: `en`,
|
||||||
meta: [],
|
meta: [],
|
||||||
description: `A selfmade developer blog.`,
|
description: ``,
|
||||||
}
|
}
|
||||||
|
|
||||||
SEO.propTypes = {
|
SEO.propTypes = {
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@ class BlogPostTemplate extends React.Component {
|
||||||
<SEO
|
<SEO
|
||||||
title={post.frontmatter.title}
|
title={post.frontmatter.title}
|
||||||
description={post.frontmatter.description || post.excerpt}
|
description={post.frontmatter.description || post.excerpt}
|
||||||
type='article'
|
|
||||||
/>
|
/>
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue