selfprivacy.org/_vendor/github.com/google/docsy/layouts/partials/print/page-heading.html
2024-04-22 02:04:16 +03:00

10 lines
367 B
HTML

{{/* Use the title and description of the first page to begin the document */}}
{{ $tpl := printf "print/page-heading-%s.html" .Page.Type }}
{{ if templates.Exists (printf "partials/%s" $tpl) }}
{{ partial $tpl . }}
{{ else -}}
<h1 class="title">{{ .Title }}</h1>
{{ with .Page.Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
{{ end }}