fix: some title case bugs for section page and list page (#251)

This commit is contained in:
Dillon
2020-04-23 01:22:29 +08:00
committed by GitHub
parent 07b669c826
commit d90a2d9406
37 changed files with 67 additions and 65 deletions

View File

@@ -1,12 +1,12 @@
{{- define "title" }}
{{- T .Section | default .Section | printf (T "allSome") }} | {{ .Site.Title -}}
{{- .Title | default (T .Section) | default .Section | printf (T "allSome") }} | {{ .Site.Title -}}
{{- end -}}
{{- define "content" -}}
<div class="page archive">
{{- /* Title */ -}}
<h2 class="single-title animated pulse faster">
{{- T .Section | default .Section | humanize | printf (T "allSome") -}}
{{- .Title | default (T .Section) | default .Section | printf (T "allSome") -}}
</h2>
{{- /* Paginate */ -}}