mirror of
https://github.com/ISEAL-Community/iseal-core.git
synced 2025-05-10 23:26:04 +02:00
site/layouts: group elements by module
Group elements by module within each cluster.
This commit is contained in:
31
site/layouts/partials/module-elements.html
Normal file
31
site/layouts/partials/module-elements.html
Normal file
@ -0,0 +1,31 @@
|
||||
{{/* Retrieve the cluster and module from global scratch. */}}
|
||||
{{ $cluster := $.Scratch.Get "cluster" }}
|
||||
{{ $module := $.Scratch.Get "module" }}
|
||||
|
||||
{{/* Note: we need to use two ranges for each module because it is */}}
|
||||
{{/* not possible to re-use Hugo's paginate object unless you use */}}
|
||||
{{/* the same exact arguments each time. */}}
|
||||
<h4 id="module-{{ $module }}">{{ $module }} Module</h4>
|
||||
<table class="table table-sm table-bordered">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="col-2">Elements in the <code>{{- $module -}}</code> module:</td>
|
||||
<td>
|
||||
{{/* Use range over a nested where. The way to read this is */}}
|
||||
{{/* from the inside out: terms, cluster, module. */}}
|
||||
{{ range where (where (where site.RegularPages "Type" "terms") "Params.cluster" "==" $cluster) "Params.module" "==" $module }}
|
||||
<a href="#{{ .Params.slug }}">{{ .Params.field }}</a>
|
||||
{{ end }}
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
{{ range where (where (where site.RegularPages "Type" "terms") "Params.cluster" "==" $cluster) "Params.module" "==" $module }}
|
||||
<div class="col">
|
||||
{{ .Render "term" }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
|
||||
{{- /* vim: set ts=2 sw=2 et: */}}
|
Reference in New Issue
Block a user