Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/person-jsonld.html')
-rw-r--r--layouts/partials/person-jsonld.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/person-jsonld.html b/layouts/partials/person-jsonld.html
new file mode 100644
index 0000000..b554f81
--- /dev/null
+++ b/layouts/partials/person-jsonld.html
@@ -0,0 +1,14 @@
+{
+ "@context": "http://schema.org/",
+ "@type": "Person",
+ "name": "{{ .Site.Params.author.name }}",
+ "url": "{{ .Permalink }}",
+ "jobTitle": "{{ .Site.Params.author.jobTitle }}",
+ "gender": "{{ .Site.Params.author.gender }}",
+ "image": "{{ .Site.Params.author.image | absURL }}",
+ "sameAs": [
+ "https://github.com/{{ .Site.Params.author.github }}/",
+ "https://twitter.com/{{ .Site.Params.author.twitter }}/",
+ "https://www.linkedin.com/in/{{ .Site.Params.author.linkedin }}/"
+ ]
+}