2020-09-19 11:28:47 -07:00
|
|
|
{{ $sectionPages := where .context.Site.Pages ".Section" "learn" }}
|
|
|
|
{{ $modules := where $sectionPages ".Layout" "module" }}
|
|
|
|
{{ $optionalModule := .module }}
|
|
|
|
|
2022-06-01 10:58:20 -07:00
|
|
|
|
2020-09-19 11:28:47 -07:00
|
|
|
<ul class="p-0">
|
|
|
|
{{ range sort $modules ".Params.index" }}
|
2022-06-01 10:58:20 -07:00
|
|
|
<li class="list-none px-4 p-2 {{ if eq $optionalModule . }}font-bold{{ end }}">
|
2020-09-19 11:28:47 -07:00
|
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|