Welcome to mirror list, hosted at ThFree Co, Russian Federation.

datatable.html « shortcodes « layouts - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e2814f5a9f8f3a01ea32af3dba0da341daed452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ $package := (index .Params 0) }}
{{ $listname := (index .Params 1) }}
{{ $list := (index (index .Site.Data.docs $package) $listname) }}
{{ $fields := after 2 .Params }}

<table class="table table-bordered">
	<tr>
		{{ range $fields }}
		<th>{{ . }}</th>
		{{ end }}
	</tr>
	{{ range $list }}
	<tr>
		{{ range $k, $v := . }}
		{{ $.Scratch.Set $k $v }}
		{{ end }}
		{{ range $fields }}
			<td>{{ $.Scratch.Get . }}</td>
		{{ end }}
	</tr>
	{{ end }}
</table>