trwnh.com/unified.test.hugo/layouts/partials/components/article-header.html

18 lines
907 B
HTML
Raw Normal View History

2024-11-13 17:24:48 +00:00
<header class="article-header section">
<div class="container">
{{ with .Title | safeHTML }}<h1 class="article-title p-name entry-title">{{.}}</h1>{{ end }}
{{- if isset .Params "summary" }}{{/* only use explicitly-set summaries, not auto-generated ones */}}
{{ with .Summary | safeHTML }}<p class="article-summary p-summary entry-summary">{{.}}</p>{{ end }}
{{- end }}
{{ partial "components/article-authors.html" . }}
{{/* <a href="#end-of-header" class="skip-metadata" aria-label="Skip further metadata"></a> */}}
{{ partial "components/article-published-datetime.html" . }}
{{ partial "components/article-in-reply-to.html" . }}
{{ partial "components/article-tags.html" . }}
{{ partial "components/article-permalink.html" . }}
{{ partial "components/alt-formats.html" . }}
{{ partial "components/article-syndication-list.html" . }}
</div>
<hr />
<a id="end-of-header" aria-hidden="true"></a>
</header>