Omphaloskepsis-2/layouts/portfolio/section.html

36 lines
1 KiB
HTML
Raw Normal View History

2023-08-07 18:23:46 -04:00
{{ define "main-class" }}--section layouts-portfolio-section{{ end }}
2022-11-10 22:48:02 -07:00
{{ define "main-header" }}
<header class="site-content__header">
2023-06-30 21:16:59 -06:00
<h2 class="page-title">{{ .Title | safeHTML }}.
2022-11-10 22:48:02 -07:00
{{ range .AlternativeOutputFormats -}}
<a href="{{ .RelPermalink }}">
2023-08-07 18:23:46 -04:00
<img class="feed-icon" src="{{ $.Site.Params.feedIcon }}">
2022-11-10 22:48:02 -07:00
</a>
{{ end }}
2023-06-30 21:16:59 -06:00
</h2>
2022-11-10 22:48:02 -07:00
{{ .Content }}
{{ if ne .Type "portfolio" }}
<nav class="page-header__minor-links">
{{ partial "years-list.html" . }}
</nav>
{{ end }}
</header>
{{ end }}
{{ define "main-body" }}
{{ if eq .Type "portfolio" }}
<article class="site-content__body site-content__body--list">
<ul class="site-content__sections-list">
{{ range .Sections.ByWeight }}
{{ if eq .Weight 10 }}<hr>{{ end }}
2023-06-30 21:16:59 -06:00
<li><a href="{{ .RelPermalink }}"><h3>{{ .Title }}</h3></a> <p>({{ len .Pages }})</p></li>
2022-11-10 22:48:02 -07:00
{{ end }}
</ul>
</article>
{{ else }}
{{ partial "items-grid.html" . }}
{{ end }}
{{ end }}