aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontpage/layouts/partials/head/twitter_cards.html
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontpage/layouts/partials/head/twitter_cards.html')
-rw-r--r--code/frontpage/layouts/partials/head/twitter_cards.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/code/frontpage/layouts/partials/head/twitter_cards.html b/code/frontpage/layouts/partials/head/twitter_cards.html
new file mode 100644
index 0000000..fdf581c
--- /dev/null
+++ b/code/frontpage/layouts/partials/head/twitter_cards.html
@@ -0,0 +1,24 @@
+<meta name="twitter:card" content="summary_large_image">
+<meta name="twitter:site" content="{{ .Site.Params.twitterSite }}">
+<meta name="twitter:creator" content="{{ .Site.Params.twitterCreator }}">
+<meta name="twitter:title" content="{{ .Title }}">
+<meta name="twitter:description" content="{{ .Description }}">
+{{ with $.Params.images -}}
+ <meta name="twitter:image" content="{{ $.Permalink }}{{ index . 0 }}">
+{{ else -}}
+ {{ $images := $.Resources.ByType "image" -}}
+ {{ $featured := $images.GetMatch "*feature*" -}}
+ {{ if not $featured -}}
+ {{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" -}}
+ {{ end -}}
+ {{ with $featured -}}
+ <meta name="twitter:image" content="{{ $featured.Permalink }}">
+ {{ else -}}
+ {{ with $.Site.Params.images -}}
+ <meta name="twitter:image" content="{{ index . 0 | absURL }}">
+ {{ else -}}
+ <meta name="twitter:card" content="summary">
+ {{ end -}}
+ {{ end -}}
+{{ end -}}
+<meta name="twitter:image:alt" content="{{ .Title }}"> \ No newline at end of file