Skip to content

Commit

Permalink
try this too
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Oct 31, 2022
1 parent bdd317e commit 56855d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/src/modules/components/TopLayoutBlog.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,10 @@ function TopLayoutBlog(props) {
{headers.authors
.map((key) => authors[key].name)
.map((author) => (
<meta property="article:author" content={author} />
<React.Fragment>
<meta property="author" content={author} />
<meta property="article:author" content={author} />
</React.Fragment>
))}
<meta property="article:published_time" content={headers.date} />
</Head>
Expand Down

0 comments on commit 56855d7

Please sign in to comment.