summaryrefslogtreecommitdiffstats
path: root/themes/tozt/layouts/blog/list.html
blob: 68ea2a4d90e746eca4662d6ac4e49cadda2bfb85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ partial "header.html" . }}

{{ .Content }}

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

{{ partial "footer.html" . }}