mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-08 17:22:46 +00:00
fix tag to uppercase on taxonomy page.
This commit is contained in:
parent
060b16ecdc
commit
5a77deedc9
@ -7,7 +7,12 @@
|
||||
{{ partial "site-navigation.html" .}}
|
||||
<div class="tc-l pv4 pv6-l ph3 ph4-ns">
|
||||
<h1 class="f2 f-subheadline-l fw2 white-90 mb0 lh-title">
|
||||
{{ .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 }}
|
||||
</h1>
|
||||
{{ with .Params.description }}
|
||||
<h2 class="fw1 f5 f3-l white-80 measure-wide-l center mt3">
|
||||
|
Loading…
x
Reference in New Issue
Block a user