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

19 lines
621 B
HTML
Raw Normal View History

<header class="feed-header section">
<div class="container">
2024-11-13 17:24:48 +00:00
<h1 class="feed-title p-name">{{.Title | safeHTML}}</h1>
{{- if isset .Params "summary" }}
2024-11-16 22:42:05 +00:00
<p class="feed-summary subtitle p-summary">{{ .Summary | safeHTML }}</p>
2024-11-13 17:24:48 +00:00
{{- end }}
{{ partial "components/feed-authors.html" . }}
{{- with .Content }}
<div class="feed-content e-content hugo-content">
2024-11-13 17:24:48 +00:00
{{ . }}
</div>
{{- end }}
2024-11-13 17:24:48 +00:00
{{ 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>