summaryrefslogtreecommitdiff
path: root/layouts/recipes/list.html
blob: de18df081de506907a5284d4d7664013b66806d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{- define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{- range sort .Pages "Title" }}
<section class="recipe">
	<div class="preview">
		{{- with .Params.preview }}
		<img src="{{ .src }}" />
		{{- end }}
	</div>
	<div class="description">
		<h2>
			<a href="{{ .Permalink }}">{{ .Title }}</a>
		</h2>
		<ul class="taglist">
			{{- range sort .Params.tags }}
			<li><a class="tag" href="/tags/{{ . | lower }}">{{ . }}</a></li>
			{{- end }}
		</ul>
		{{ .Content }}
	</div>
</section>
{{- end }}
{{- end }}