summaryrefslogtreecommitdiff
path: root/layouts/projects/list.html
blob: de50a9ce2ac3f7f28d68c8ee22f7929425571759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{- define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{- range .Sections }}
	<section class="project">
		<h2>
			{{ .Title }}
			<small>
				{{- range .Params.languages }}
					{{ . }}
				{{- end }}
			</small>
		</h2>
		{{ .Content }}
		<nav class="project">
			<a href="{{ .Permalink }}releases">Releases</a>
			<a href="{{ .Params.repository }}">Sources</a>
		</nav>
	</section>
{{- end }}
{{- end }}