summaryrefslogtreecommitdiff
path: root/themes/hugo-xmin/layouts/_default/list.html
blob: 6940251810b97bae5dbbbe94befdbaf5e1d80e68 (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 "01/02/2006" }}</span>
    <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
</ul>

{{ partial "footer.html" . }}