diff --git a/layouts/partials/site-header.html b/layouts/partials/site-header.html index 10a682f..9fd3b5d 100755 --- a/layouts/partials/site-header.html +++ b/layouts/partials/site-header.html @@ -7,7 +7,12 @@ {{ partial "site-navigation.html" .}}

- {{ .Title | default .Site.Title }} + {{/* Determinate if is a taxonomy page so put the tag is in uppercase on the title */}} + {{ if .Data.Singular }} + {{ .Title | default .Site.Title | upper }} + {{ else }} + {{ .Title | default .Site.Title }} + {{ end }}

{{ with .Params.description }}