19 lines
592 B
HTML
19 lines
592 B
HTML
{{- $section := .Section -}}
|
|
{{- $sectionPages := default (slice) .SectionPages -}}
|
|
{{- $title := .Title -}}
|
|
{{- $context := default . .Context -}}
|
|
|
|
<section>
|
|
<header>
|
|
{{- with $section -}}
|
|
{{- partial "breadcrumbs.html" . -}}
|
|
<h2><a href="{{ .RelPermalink }}">{{ with .LinkTitle }}{{ . }}{{ else }}{{ .Title }}{{ end }}</a></h2>
|
|
{{- else -}}
|
|
{{- with $title -}}
|
|
<h2>{{ . }}</h2>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</header>
|
|
{{- partial "articles-list.html" (dict "Pages" $sectionPages "Context" $context) -}}
|
|
</section>
|
|
<hr /> |