Specify markdownify or plainify for .Title references

This commit is contained in:
2021-11-20 19:05:56 -06:00
parent 919ecde4ac
commit a01a70fc91
7 changed files with 12 additions and 12 deletions

View File

@ -21,9 +21,9 @@
{{ end }}
{{ if .IsHome }}
<title>{{ .Site.Title }}</title>
<title>{{ .Site.Title | plainify }}</title>
{{ else }}
<title>{{ print .Title " | " .Site.Title }}</title>
<title>{{ (print .Title " | " .Site.Title) | plainify }}</title>
{{ end }}
{{ partial "opengraph.html" . }}