Explorar o código

fix: add author name to profile page title

Author name now appears in browser tab when visiting an author's profile page.
George Cushen %!s(int64=5) %!d(string=hai) anos
pai
achega
1990134455
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      layouts/partials/site_head.html

+ 2 - 2
layouts/partials/site_head.html

@@ -175,7 +175,7 @@
   {{ end }}
   <meta property="og:site_name" content="{{ site.Title }}">
   <meta property="og:url" content="{{ .Permalink }}">
-  <meta property="og:title" content="{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ site.Title }}">
+  <meta property="og:title" content="{{ if not .IsHome }}{{ .Params.name | default .Title }} | {{ end }}{{ site.Title }}">
   <meta property="og:description" content="{{ $desc }}">
   {{- with $og_image -}}
   <meta property="og:image" content="{{.}}">
@@ -199,6 +199,6 @@
 
   {{ partial "custom_head" . }}
 
-  <title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ site.Title }}</title>
+  <title>{{ if not .IsHome }}{{ .Params.name | default .Title }} | {{ end }}{{ site.Title }}</title>
 
 </head>