summaryrefslogtreecommitdiff
path: root/layouts/partials/head.html
blob: c2e35975d873dd7adc3275826ad1728226b26dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="/style.css?v=1.0.1">
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ .Title }}{{ end }}</title>
<meta name="author" content="{{ .Site.Params.email }} ({{ .Site.Params.name }})">
<meta name="description" content="{{- plainify (chomp .Summary) -}}">
<!-- OpenGraph specification -->
<meta property="og:title" content="{{ if .IsHome }}{{ site.Title }}{{ else }}{{ .Title }}{{ end }}" />
<meta property="og:description" content="{{- plainify (chomp .Summary) -}}" />
<meta property="og:url" content="{{ .Permalink}}" />
{{- $images := .Page.Resources.ByType "image" }}
{{- with index $images 0 }}
{{- $processed := .Resize "600x" }}
{{- $processed := $processed.Crop "512x512" }}
<meta property="og:image" content="{{ $processed.RelPermalink }}" />
{{- end -}}