chore(layout): remove page keywords in open graph
parent
f046c8cd19
commit
03567e402b
|
@ -117,7 +117,7 @@ module.exports = class extends Component {
|
||||||
updated={page.updated}
|
updated={page.updated}
|
||||||
author={open_graph.author || config.author}
|
author={open_graph.author || config.author}
|
||||||
description={open_graph.description || page.description || page.excerpt || page.content || config.description}
|
description={open_graph.description || page.description || page.excerpt || page.content || config.description}
|
||||||
keywords={page.keywords || (page.tags && page.tags.length ? page.tags : undefined) || config.keywords}
|
keywords={(page.tags && page.tags.length ? page.tags : undefined) || config.keywords}
|
||||||
url={open_graph.url || page.permalink || url}
|
url={open_graph.url || page.permalink || url}
|
||||||
images={openGraphImages}
|
images={openGraphImages}
|
||||||
siteName={open_graph.site_name || config.title}
|
siteName={open_graph.site_name || config.title}
|
||||||
|
|
Loading…
Reference in New Issue