Merge commit 'dd78d5b23fe597f4461aa4199401b4e07c0612e2' as 'docs'

This commit is contained in:
Bjørn Erik Pedersen
2017-06-26 20:46:06 +02:00
491 changed files with 27233 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{{ $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>