summaryrefslogtreecommitdiffstats
path: root/themes/tozt/layouts/recipes/list.html
blob: 2caead7512234be9881e7eadc8d846662bb596ad (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="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
</ul>

{{ partial "footer.html" . }}