trwnh.com/unified.test.hugo/layouts/partials/components/feed-header.html
2024-11-13 11:24:48 -06:00

19 lines
No EOL
612 B
HTML

<header class="feed-header section">
<div class="container">
<h1 class="feed-title p-name">{{.Title | safeHTML}}</h1>
{{- if isset .Params "summary" }}
<p class="feed-summary p-summary">{{ .Summary | safeHTML }}</p>
{{- end }}
{{ partial "components/feed-authors.html" . }}
{{- with .Content }}
<div class="feed-content e-content hugo-content">
{{ . }}
</div>
{{- end }}
{{ partial "components/tag-aliases.html" . }}
{{/* <a href="#items" class="skip-to-items">Skip to the feed items</a> */}}
{{ partial "components/feed-permalink.html" . }}
{{ partial "components/alt-formats.html" . }}
<hr>
</div>
</header>