mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			462 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			462 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ $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>
 |