Omphaloskepsis-2/layouts/cv/section.html

25 lines
739 B
HTML
Raw Normal View History

2025-06-06 17:01:20 +02:00
{{ define "main-class" }}--section layouts-cv-section{{ end }}
2022-11-10 22:48:02 -07:00
{{ define "main-header" }}
2025-06-06 17:01:20 +02:00
<header class="site-content__header">
<h2 class="page-title">{{ .Title | safeHTML }}. {{ if not ( or ( eq .Type "cv" ) ( eq .Type "cv/organisations" ) ) -}}
{{- range .AlternativeOutputFormats -}}
<a href="{{ .RelPermalink }}" aria-label="{{ $.Title }} RSS feed">
<img class="feed-icon" alt="RSS feed" src="{{ $.Site.Params.feedIcon }}">
</a>
2023-10-03 13:08:35 +01:00
{{- end -}}
2025-06-06 17:01:20 +02:00
{{- end -}}
</h2>
{{- .Content -}}
<nav class="page-header__minor-links">
{{- partial "years-list.html" . -}}
</nav>
</header>
2022-11-10 22:48:02 -07:00
{{ end }}
{{ define "main-body" }}
2025-06-06 17:01:20 +02:00
{{ partial "items-grid.html" . }}
2022-11-10 22:48:02 -07:00
{{ end }}