summaryrefslogtreecommitdiffstats
path: root/themes/tozt/layouts/blog/list.html
blob: 9483571da6105f0ab0e3facc5d9bd81e40df466e (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="{{ .URL }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
</ul>

{{ partial "footer.html" . }}