File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,13 @@ import PropTypes from 'prop-types';
3
3
4
4
export default function HTML ( props ) {
5
5
return (
6
- < html { ...props . htmlAttributes } lang = "en" prefix = "og: https://ogp.me/ns#" >
6
+ < html
7
+ { ...props . htmlAttributes }
8
+ lang = "en"
9
+ prefix = "
10
+ og: https://ogp.me/ns#
11
+ article: https://ogp.me/ns/article#"
12
+ >
7
13
< head >
8
14
< meta charSet = "utf-8" />
9
15
< meta httpEquiv = "x-ua-compatible" content = "ie=edge" />
@@ -15,7 +21,6 @@ export default function HTML(props) {
15
21
name = "description"
16
22
content = "Changing hearts and minds about development and testing"
17
23
/>
18
- < meta property = "og:type" content = "website" />
19
24
< meta property = "og:locale" content = "en_US" />
20
25
< meta property = "og:site_name" content = "Testing Required" />
21
26
< meta property = "og:image" content = "/opengraph_preview.png" />
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ export default function Template({ data }) {
18
18
content = { `${ title } - ${ siteMetadata . title } ` }
19
19
/>
20
20
< meta property = "og:description" content = { excerpt } />
21
+
22
+ < meta property = "og:type" content = "article" />
23
+ < meta property = "article:author" content = "Kylee Tilley" />
21
24
</ Helmet >
22
25
23
26
< div className = "blog-post-container" >
You can’t perform that action at this time.
0 commit comments