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

person-jsonld.html « partials « layouts - github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1be5b920b71eb7f8a4c15916e2cc12c9fde68131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "@context": "http://schema.org/",
  "@type": "Person",
  "name": "{{ .Site.Author.name }}",
  {{ with .Site.GetPage "/about" }}
    "url": "{{ .Permalink }}",
  {{ end }}
  "jobTitle": "{{ .Site.Author.job }}",
  "gender": "{{ .Site.Author.gender }}",
  "image": "{{ .Site.Author.image | absURL }}",
  "sameAs": [
    "https://github.com/{{ .Site.Author.github }}/",
    "https://twitter.com/{{ .Site.Author.twitter }}/",
    "https://www.linkedin.com/in/{{ .Site.Author.linkedin }}/"
  ]
}