78 lines
2.6 KiB
HTML
78 lines
2.6 KiB
HTML
{{ define "main" }}
|
|
<header>
|
|
<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 := partial "helper/image" (dict "Image" .Params.image "Resources" .Resources "Context" .) -}}
|
|
{{ if $image }}
|
|
<div class="section-image">
|
|
{{ partial "helper/thumbnail-image" (dict
|
|
"Resource" $image.Resource
|
|
"Width" 60
|
|
"Height" 60
|
|
"Resize" .Site.Params.ImageProcessing.Thumbnail.Enabled
|
|
"Attributes" (dict
|
|
"src" $image.Permalink
|
|
"alt" .Title
|
|
"loading" "lazy"
|
|
"width" $image.Width
|
|
"height" $image.Height
|
|
)
|
|
) }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</header>
|
|
|
|
{{- $pages := partial "helper/pages.html" . -}}
|
|
{{- $subsections := .Sections -}}
|
|
|
|
{{- if and (eq (len $pages) (len $subsections)) (eq $pages $subsections) -}}
|
|
{{- $subsections = slice -}}
|
|
{{- end -}}
|
|
|
|
{{- with $subsections -}}
|
|
<aside>
|
|
<h2 class="section-title">{{ T "list.subsection" (len $subsections) }}</h2>
|
|
<div class="subsection-list">
|
|
<div class="article-list--tile">
|
|
{{ range . }}
|
|
{{ partial "article-list/tile" . }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
{{- end -}}
|
|
|
|
{{/* List only pages that are not a subsection */}}
|
|
{{ $paginator := partial "helper/paginator.html" . }}
|
|
{{ with $paginator }}
|
|
<section class="article-list--compact">
|
|
{{ range .Pages }}
|
|
{{ partial "article-list/compact" . }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{- partial "pagination.html" . -}}
|
|
|
|
{{ partialCached "footer/footer" . }}
|
|
{{ end }}
|
|
|
|
{{ define "right-sidebar" }}
|
|
{{ partial "sidebar/right.html" (dict "Context" . "Scope" "homepage") }}
|
|
{{ end }} |