I am trying to make Hugo limit my meta titles length. What I am trying to do is: if
{{- with .Title }}{{ . }} | {{ end }}{{ .Site.Title -}}{{ end }}
is larger than 70 chars , then only display:
{{- with .Title }}{{ . }}{{ end }}
What is the correct way of writing the math so Hugo adds {{.Title}} + | + {{.Site.Title}}
?
The rest I think would be something like:
{{if gt (len “Math goes here”) 70}}
{{- with .Title }}{{ . }}{{ end }}
{{else}}
{{- with .Title }}{{ . }} | {{ end }}{{ .Site.Title -}}{{ end }}
{{end}}