summaryrefslogtreecommitdiff
path: root/layouts/recipes/list.html
blob: 0565d9321ef7e9679b4d1175e7e042ff72b08898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{- define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul>
	{{- range .Paginator.Pages }}
		<li>
			<a href="{{ .Permalink }}">{{ .Title }}</a>
				<small>
					{{ .Summary }}
					{{- range .Params.tags }}
						<a href="/tags/{{ . | lower }}">#{{ . }}</a>
					{{- end }}
				</small>
		</li>
	{{- end }}
</ul>
{{- end }}