Skip to content

Commit

Permalink
theme: write own social implementation #683
Browse files Browse the repository at this point in the history
to fix titles
  • Loading branch information
McShelby committed Oct 11, 2023
1 parent 94af0c1 commit 490e51b
Show file tree
Hide file tree
Showing 5 changed files with 160 additions and 4 deletions.
2 changes: 1 addition & 1 deletion exampleSite/config/_default/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ defaultContentLanguage = "en"
# disableLanguages = ['pir']

# the site's title of this showcase; you should change this ;-)
title = "Hugo Relearn Documentation"
title = "Hugo Relearn Theme"

[outputs]
# add JSON to the home to support Lunr search; This is a mandatory setting
Expand Down
3 changes: 2 additions & 1 deletion layouts/partials/meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@
{{- with .Site.Params.author }}
<meta name="author" content="{{ . }}">
{{- end }}
{{ partial "indent.html" (dict "content" (partial "social.html" .) "indention" " ") }}
{{- partial "opengraph.html" . }}
{{- partial "twitter_cards.html" . }}
109 changes: 109 additions & 0 deletions layouts/partials/opengraph.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
{{- /* based on Hugo 0.119.0 _internal/opengraph.html but with modified title */}}
{{- $format := partial "get-format.hugo" . }}
{{- $outputFormat := partial "output-format.hugo" (dict "page" . "format" $format) }}
{{- $page := . }}
{{- $title := .Title }}
{{- if eq $outputFormat "searchpage" }}
{{- $title = T "Search" }}
{{- else if eq .Kind "taxonomy" }}
{{- $title = i18n .Data.Plural }}
{{- if not $title }}
{{- $title = .Data.Plural }}
{{- end }}
{{- else if eq .Kind "term" }}
{{- $title = i18n .Data.Singular }}
{{- if not $title }}
{{- $title = .Data.Singular }}
{{- end }}
{{- $title = printf "%s %s %s" .Title (default "::" .Site.Params.titleSeparator) $title }}
{{- end }}
{{- if and $title .Site.Title (not (eq $title .Site.Title)) }}
{{- $title = printf "%s %s %s" $title (default "::" .Site.Params.titleSeparator) .Site.Title }}
{{- end }}
<meta property="og:title" content="{{ $title }}">
<meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}">
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}">
<meta property="og:url" content="{{ .Permalink }}">
{{- with $.Params.images }}
{{- range first 6 . }}
<meta property="og:image" content="{{ . | absURL }}">
{{- end }}
{{- else }}
{{- $images := $.Resources.ByType "image" }}
{{- $featured := $images.GetMatch "*feature*" }}
{{- if not $featured }}
{{- $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}
{{- end }}
{{- with $featured }}
<meta property="og:image" content="{{ $featured.Permalink }}">
{{- else }}
{{- with $.Site.Params.images }}
<meta property="og:image" content="{{ index . 0 | absURL }}">
{{- end }}
{{- end }}
{{- end }}
{{- if .IsPage }}
{{- $iso8601 := "2006-01-02T15:04:05-07:00" }}
{{- with .Parent }}
{{- $page := . }}
{{- $link := "<link href=\"%s\" rel=\"%s\" type=\"%s\" title=\"%s\">" }}
{{- $title := .Title }}
{{- if eq $outputFormat "searchpage" }}
{{- $title = T "Search" }}
{{- else if eq .Kind "taxonomy" }}
{{- $title = i18n .Data.Plural }}
{{- if not $title }}
{{- $title = .Data.Plural }}
{{- end }}
{{- else if eq .Kind "term" }}
{{- $title = i18n .Data.Singular }}
{{- if not $title }}
{{- $title = .Data.Singular }}
{{- end }}
{{- $title = printf "%s %s %s" .Title (default "::" .Site.Params.titleSeparator) $title }}
{{- end }}
{{- if and $title .Site.Title (not (eq $title .Site.Title)) }}
{{- $title = printf "%s %s %s" $title (default "::" .Site.Params.titleSeparator) .Site.Title }}
{{- end }}
<meta property="article:section" content="{{ $title }}">
{{- end }}
{{- with .PublishDate }}
<meta property="article:published_time" {{ .Format $iso8601 | printf "content=%q" | safeHTMLAttr }}>
{{- end }}
{{- with .Lastmod }}
<meta property="article:modified_time" {{ .Format $iso8601 | printf "content=%q" | safeHTMLAttr }}>
{{- end }}
{{- end }}
{{- with .Params.audio }}
<meta property="og:audio" content="{{ . }}">
{{- end }}
{{- with .Params.locale }}
<meta property="og:locale" content="{{ . }}">
{{- end }}
{{- with .Site.Title }}
<meta property="og:site_name" content="{{ . }}">
{{- end }}
{{- with .Params.videos }}
{{- range . }}
<meta property="og:video" content="{{ . | absURL }}">
{{- end }}
{{- end }}
{{- /* If it is part of a series, link to related articles */}}
{{- $permalink := .Permalink }}
{{- $siteSeries := .Site.Taxonomies.series }}
{{- if $siteSeries }}
{{- with .Params.series }}
{{- range $name := . }}
{{- $series := index $siteSeries ($name | urlize) }}
{{- range $page := first 6 $series.Pages }}
{{- if ne $page.Permalink $permalink }}
<meta property="og:see_also" content="{{ $page.Permalink }}">
{{ end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- /* Facebook Page Admin ID for Domain Insights */}}
{{- with .Site.Social.facebook_admin }}
<meta property="fb:admins" content="{{ . }}">
{{- end }}
2 changes: 0 additions & 2 deletions layouts/partials/social.html

This file was deleted.

48 changes: 48 additions & 0 deletions layouts/partials/twitter_cards.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{{- /* based on Hugo 0.119.0 _internal/twitter_cardss.html but with modified title */}}
{{- $format := partial "get-format.hugo" . }}
{{- $outputFormat := partial "output-format.hugo" (dict "page" . "format" $format) }}
{{- $page := . }}
{{- $title := .Title }}
{{- if eq $outputFormat "searchpage" }}
{{- $title = T "Search" }}
{{- else if eq .Kind "taxonomy" }}
{{- $title = i18n .Data.Plural }}
{{- if not $title }}
{{- $title = .Data.Plural }}
{{- end }}
{{- else if eq .Kind "term" }}
{{- $title = i18n .Data.Singular }}
{{- if not $title }}
{{- $title = .Data.Singular }}
{{- end }}
{{- $title = printf "%s %s %s" .Title (default "::" .Site.Params.titleSeparator) $title }}
{{- end }}
{{- if and $title .Site.Title (not (eq $title .Site.Title)) }}
{{- $title = printf "%s %s %s" $title (default "::" .Site.Params.titleSeparator) .Site.Title }}
{{- end }}
{{- with $.Params.images }}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="{{ index . 0 | absURL }}">
{{- else }}
{{- $images := $.Resources.ByType "image" }}
{{- $featured := $images.GetMatch "*feature*" }}
{{- if not $featured }}
{{- $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}
{{- end }}
{{- with $featured }}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="{{ $featured.Permalink }}">
{{- else }}
{{- with $.Site.Params.images }}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="{{ index . 0 | absURL }}">
{{- else }}
<meta name="twitter:card" content="summary">
{{- end }}
{{- end }}
{{- end }}
<meta name="twitter:title" content="{{ $title }}">
<meta name="twitter:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}">
{{- with .Site.Social.twitter }}
<meta name="twitter:site" content="@{{ . }}">
{{- end }}

0 comments on commit 490e51b

Please sign in to comment.