File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
3
3
4
4
export default function HTML ( props ) {
5
5
return (
6
- < html { ...props . htmlAttributes } lang = "en" >
6
+ < html { ...props . htmlAttributes } lang = "en" prefix = "og: https://ogp.me/ns#" >
7
7
< head >
8
8
< meta charSet = "utf-8" />
9
9
< meta httpEquiv = "x-ua-compatible" content = "ie=edge" />
@@ -13,8 +13,9 @@ export default function HTML(props) {
13
13
/>
14
14
< meta
15
15
name = "description"
16
- content = "The personal website of Kylee Tilley "
16
+ content = "Changing hearts and minds about development and testing "
17
17
/>
18
+ < meta property = "og:locale" content = "en_US" />
18
19
{ props . headComponents }
19
20
</ head >
20
21
< body { ...props . bodyAttributes } >
Original file line number Diff line number Diff line change @@ -30,10 +30,9 @@ export default ({ children }) => (
30
30
< Helmet >
31
31
< title > { site . siteMetadata . title } </ title >
32
32
< link rel = "me" href = "https://mastodon.social/@testingrequired" />
33
- < meta
34
- name = "viewport"
35
- content = "width=device-width, initial-scale=1.0"
36
- />
33
+
34
+ < meta property = "og:title" content = { site . siteMetadata . title } />
35
+ < meta property = "og:url" content = { location . href } />
37
36
</ Helmet >
38
37
39
38
< Header fullscreen = { location . pathname === '/' } >
You can’t perform that action at this time.
0 commit comments