summaryrefslogtreecommitdiffstats
path: root/layouts/partials/head/author.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/head/author.html')
-rw-r--r--layouts/partials/head/author.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/partials/head/author.html b/layouts/partials/head/author.html
new file mode 100644
index 0000000..94788e9
--- /dev/null
+++ b/layouts/partials/head/author.html
@@ -0,0 +1,13 @@
+{{- $author := "" -}}
+
+{{- with .Params.author -}}
+ {{- if (reflect.IsSlice .) -}}
+ {{- $author = delimit . ", " -}}
+ {{- else -}}
+ {{- $author = . -}}
+ {{- end -}}
+{{- else -}}
+ {{- $author = site.Params.author.name -}}
+{{- end -}}
+
+{{- return $author -}}