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

{{ .Content }}

<ul>
  {{ range (where .Data.Pages "Section" "!=" "") }}
  <li>
    <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
</ul>

{{ partial "footer.html" . }}