summaryrefslogtreecommitdiff
path: root/themes/hugo-xmin/layouts/_default/list.html
blob: 351a97632f61dab9e98c14fc35176c574be52991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ partial "header.html" . }}

{{ .Content }}

<ul>
  {{ $pages := .Pages }}
  {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
  {{ range (where $pages "Section" "!=" "") }}
  <li>
    <span class="date">{{ .Date.Format "2006/01/02" }}</span>
    <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
</ul>

{{ partial "footer.html" . }}