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

opengraph.html « partials « layouts - github.com/chipzoller/hugo-clarity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d86f5f8603153dfa8101c92ab4acaf5f3dbd7904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{{- $relpath := .Page.RelPermalink -}}
{{- $summary := truncate 160 .Summary }}
{{- $s := .Site.Params }}
{{- $p := .Params }}
{{- with $p.description }}
  {{- $summary = truncate 160 . }}
{{- end }}
{{- if .IsHome }}
  {{- $summary = $s.description }}
  {{- with $p.description }}
    {{- $summary = . }}
  {{- end }}
{{- end }}
{{- $site := .Site.Title }}
{{- $title := .Title }}
{{- $permalink := .Permalink }}
{{- $logo := absURL $s.logo }}
{{- $author := $s.author }}
{{- with $p.author }}
  {{ $author := . }}
{{- end }}
{{- $image := absURL $s.fallBackOgImage }}
{{- with $p.featureImage }}
  {{- $fullpath := ( add $relpath . ) -}}
  {{- $image = absURL $fullpath  }}
{{- end }}
{{- with $p.thumbnail }}
  {{- $fullpath := ( add $relpath . ) -}}
  {{- $image = absURL $fullpath  }}
{{- end }}
{{- with $p.shareImage }}
  {{- $fullpath := ( add $relpath . ) -}}
  {{- $image = absURL $fullpath  }}
{{- end }}
<meta property="og:locale" content="{{ .Lang }}" />
{{ range .Translations }}
<meta property="og:locale:alternate" content="{{ .Lang }}" />
{{ end }}
{{- if .IsHome }}
<meta property="og:type" content="website">
{{- else }}
<meta property="og:type" content="article">
{{- end }}
<meta name="description" content="{{ $summary }}" />
<meta name="twitter:card" content="{{ if $s.largeTwitterCard }}summary_large_image{{ else }}summary{{ end }}" />
<meta name="twitter:creator" content="{{ $s.twitter }}">
<meta name="twitter:title" content="{{ .Title }}" />
<meta property="og:url" content="{{ $permalink }}" />
<meta property="og:title" content="{{ $title }}" />
<meta property="og:description" content="{{ $summary }}" />
<meta property="og:image" content="{{ $image }}" />
{{- $keywords := "" }}
{{- with $s.keywords }}
  {{- $keywords = delimit $s.keywords "," }}
{{- end }}
{{- with $p.keywords }}
  {{- $keywords = delimit . "," }}
{{- end }}
{{- with $keywords }}
  <meta name="keywords" content="{{ $keywords }}" />
{{- end }}
{{- if eq .Section $s.blogDir -}}
  {{- $date := ( .Date.Format "2006-02-01") -}}
  {{- $date := (time .Date) }}
  {{- $lastMod := (time .Lastmod) }}
  <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "BlogPosting",
      "mainEntityOfPage":"{{ $permalink }}",
      "name": "{{ $site }}",
      "headline": {{ $title }},
      "description": {{ $summary }},
      "url": "{{ $permalink }}",
      "datePublished": {{ $date  }},
      "dateModified": {{ $lastMod }},
      "author": {
        "@type": "Person",
        "name": "{{ $author }}"
      },
      "image":{
        "@type":"ImageObject",
        "url": "{{ $image }}"
      },
      "publisher": {
        "@type": "Organization",
        "logo": {
          "@type":"ImageObject",
          "url": "{{ $logo }}"
        },
        "name": "{{ $site }}"
      }
    }
  </script>
{{- end }}