2020-09-06 08:18:38 -04:00
|
|
|
{{ define "main" }}
|
2020-12-22 15:14:50 -05:00
|
|
|
<h3 class="section-title">
|
|
|
|
{{ if eq .Parent (.GetPage "/") }}
|
|
|
|
{{ T "list.section" }}
|
|
|
|
{{ else }}
|
|
|
|
{{ .Parent.Title }}
|
|
|
|
{{ end }}
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
<div class="section-card">
|
|
|
|
<div class="section-details">
|
|
|
|
<h3 class="section-count">{{ T "list.page" (len .Pages) }}</h3>
|
|
|
|
<h1 class="section-term">{{ .Title }}</h1>
|
|
|
|
{{ with .Params.description }}
|
|
|
|
<h2 class="section-description">{{ . }}</h2>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{- $image := partialCached "helper/image" (dict "Context" . "Type" "section") .RelPermalink "section" -}}
|
|
|
|
{{ if $image.exists }}
|
|
|
|
<div class="section-image">
|
2020-12-23 15:02:35 -05:00
|
|
|
{{ if $image.resource }}
|
|
|
|
{{- $Permalink := $image.resource.RelPermalink -}}
|
|
|
|
{{- $Width := $image.resource.Width -}}
|
|
|
|
{{- $Height := $image.resource.Height -}}
|
|
|
|
|
|
|
|
{{- if (default true .Page.Site.Params.imageProcessing.cover.enabled) -}}
|
|
|
|
{{- $thumbnail := $image.resource.Fill "120x120" -}}
|
|
|
|
{{- $Permalink = $thumbnail.RelPermalink -}}
|
|
|
|
{{- $Width = $thumbnail.Width -}}
|
|
|
|
{{- $Height = $thumbnail.Height -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
<img src="{{ $Permalink }}"
|
|
|
|
width="{{ $Width }}"
|
|
|
|
height="{{ $Height }}"
|
|
|
|
loading="lazy">
|
2020-12-22 15:14:50 -05:00
|
|
|
{{ else }}
|
2020-12-23 15:02:35 -05:00
|
|
|
<img src="{{ $image.permalink }}" loading="lazy" />
|
2020-12-22 15:14:50 -05:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2020-09-06 08:18:38 -04:00
|
|
|
|
2020-12-22 15:14:50 -05:00
|
|
|
{{ $subsections := .Sections }}
|
|
|
|
{{ with $subsections }}
|
|
|
|
<h2 class="section-title">{{ T "list.subsection" (len $subsections) }}</h2>
|
|
|
|
<div class="subsection-list">
|
|
|
|
<div class="article-list--tile">
|
|
|
|
{{ range . }}
|
|
|
|
{{ partial "article-list/tile" (dict "context" . "size" "250x150" "Type" "section") }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{/* List only pages that are not a subsection */}}
|
|
|
|
{{ $paginator := .Paginate (.Pages | complement $subsections) }}
|
2020-09-12 04:33:53 -04:00
|
|
|
<section class="article-list--compact">
|
2020-12-22 15:14:50 -05:00
|
|
|
{{ range $paginator.Pages }}
|
2020-09-12 04:33:53 -04:00
|
|
|
{{ partial "article-list/compact" . }}
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2020-09-06 08:18:38 -04:00
|
|
|
|
2020-09-12 04:33:53 -04:00
|
|
|
{{- partial "pagination.html" . -}}
|
2020-09-06 08:18:38 -04:00
|
|
|
|
2020-09-12 04:33:53 -04:00
|
|
|
{{ partialCached "footer/footer" . }}
|
|
|
|
{{ end }}
|
2020-09-06 08:18:38 -04:00
|
|
|
|
2020-09-12 04:33:53 -04:00
|
|
|
{{ define "right-sidebar" }}
|
2020-09-06 08:18:38 -04:00
|
|
|
{{ partialCached "sidebar/right.html" . }}
|
|
|
|
{{ end }}
|