Implement seo_author.name
This commit is contained in:
parent
81c9bc8fa4
commit
903f9efab9
|
@ -52,6 +52,15 @@
|
|||
|
||||
{% assign seo_author = page.author | default: page.authors[0] | default: site.author %}
|
||||
{% if seo_author %}
|
||||
{% if seo_author.name %}
|
||||
{% assign seo_author_name = seo_author.name %}
|
||||
{% else %}
|
||||
{% if site.data.authors and site.data.authors[seo_author] %}
|
||||
{% assign seo_author_name = site.data.authors[seo_author].name %}
|
||||
{% else %}
|
||||
{% assign seo_author_name = seo_author %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if seo_author.twitter %}
|
||||
{% assign seo_author_twitter = seo_author.twitter %}
|
||||
{% else %}
|
||||
|
@ -104,8 +113,8 @@
|
|||
<meta property="og:title" content="{{ seo_page_title }}" />
|
||||
{% endif %}
|
||||
|
||||
{% if seo_author %}
|
||||
<meta name="author" content="{{ seo_author }}" />
|
||||
{% if seo_author_name %}
|
||||
<meta name="author" content="{{ seo_author_name }}" />
|
||||
{% endif %}
|
||||
|
||||
{% if seo_description %}
|
||||
|
|
Loading…
Reference in New Issue