summaryrefslogtreecommitdiffstats
path: root/layouts/partials/schema.org
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/schema.org')
-rw-r--r--layouts/partials/schema.org/article.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/layouts/partials/schema.org/article.html b/layouts/partials/schema.org/article.html
index fcec66b..f4112b6 100644
--- a/layouts/partials/schema.org/article.html
+++ b/layouts/partials/schema.org/article.html
@@ -13,6 +13,8 @@
{{- $logo := resources.Get (site.Params.assets.logo | default "/img/open-graph-logo.png") -}}
{{- $logo = $logo.Resize "96x96" }}
+{{- $siteAuthor := partial "site-author.html" . }}
+
<script type="application/ld+json" id="schema-data">
{
"@context": "https://schema.org",
@@ -51,10 +53,10 @@
],
{{- end }}
{{- else }}
- {{- with site.Author.name }}
+ {{- with $siteAuthor.name }}
"author": {
"@type": "Person",
- "name": {{ . }}{{ with site.Author.twitter }},
+ "name": {{ . }}{{ with $siteAuthor.twitter }},
"url": "https://twitter.com/{{ . }}"{{ end }}
},
{{- end }}