15 lines
403 B
HTML
15 lines
403 B
HTML
<header>
|
|
{{ partialCached "header-brand.html" .Site .Site.Title (.Site.Params.logo | default "logo-large.png") }}
|
|
{{ partial "breadcrumbs.html" . }}
|
|
{{ partial "page-meta.html" . }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Description }}
|
|
<p>{{ . }}</p>
|
|
{{ else }}
|
|
{{ with .Summary }}
|
|
<p>{{ . | plainify | truncate 220 }}</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ partial "page-links.html" . }}
|
|
</header>
|