2021-06-12 08:07:39 -05:00
|
|
|
<h2>
|
|
|
|
{{ $title := .Title }}
|
|
|
|
{{ $section := .Section | humanize }}
|
|
|
|
{{ if and (ne $section $title) (ne $section "Tags") (ne $title (printf "%ss" $section)) }}
|
|
|
|
{{ $section }}:
|
|
|
|
{{ end }}
|
|
|
|
{{ if and (eq $section "Tags") (ne $section $title) }}Tag: #{{ end }}{{ $title }}
|
|
|
|
</h2>
|
|
|
|
<ul class="list">
|
2021-06-16 03:57:46 -05:00
|
|
|
{{ if and (eq $section "Tags") (eq $section $title) }}
|
|
|
|
{{/* if we're in the Tags section, sort alphabetically and don't show the date */}}
|
|
|
|
{{ range (sort .Pages "Title") }}
|
|
|
|
<li>
|
|
|
|
<a href="{{ .Permalink }}">#{{ .Title }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
{{ range .Pages }}
|
|
|
|
<li>
|
|
|
|
<span class="date">
|
|
|
|
{{ .Date.Format "2006-01-02" }}
|
|
|
|
</span> <a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
2021-06-12 08:07:39 -05:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|