github.com/square/finch@v0.0.0-20240412205204-6530c03e2b96/docs/themes/hugo-geekdoc/layouts/partials/utils/title.html (about)

     1  {{ $title := "" }}
     2  
     3  {{ if .Title }}
     4    {{ $title = .Title }}
     5  {{ else if and .IsSection .File }}
     6    {{ $title = path.Base .File.Dir | humanize | title }}
     7  {{ else if and .IsPage .File }}
     8    {{ $title = .File.BaseFileName | humanize | title }}
     9  {{ end }}
    10  
    11  {{ return $title }}