Contribution: fix hard-coded link to section #664 (#665)

* allow_multiple_mainsection

* removed comment

---------

Co-authored-by: Blackeye <>
This commit is contained in:
Blackeye 2024-04-18 17:26:30 +02:00 committed by Olivier ROMAN
parent 82f16001be
commit cabe184b26

View file

@ -4,17 +4,18 @@
</article> </article>
{{/* Define a section to pull recent posts from. For Hugo 0.20 this will default to the section with the most number of pages. */}} {{/* Define a section to pull recent posts from. For Hugo 0.20 this will default to the section with the most number of pages. */}}
{{ $mainSections := .Site.Params.mainSections | default (slice "post") }} {{ $mainSections := .Site.Params.mainSections | default (slice "post") }}
{{/* Create a variable with that section to use in multiple places. */}}
{{ $section := where .Site.RegularPages "Section" "in" $mainSections }}
{{/* Check to see if the section is defined for ranging through it */}} {{/* Check to see if the section is defined for ranging through it */}}
{{range ($mainSections)}}
{{/* Derive the section name */}}
{{ $section_name := . }}
{{/* Create a variable with that section to use in multiple places. */}}
{{ $section := where $.Site.RegularPages "Section" "in" $section_name }}
{{ $section_count := len $section }} {{ $section_count := len $section }}
{{ if ge $section_count 1 }} {{ if ge $section_count 1 }}
{{/* Derive the section name */}}
{{ $section_name := index (.Site.Params.mainSections) 0 }}
<div class="pa3 pa4-ns w-100 w-70-ns center"> <div class="pa3 pa4-ns w-100 w-70-ns center">
{{/* Use $section_name to get the section title. Use "with" to only show it if it exists */}} {{/* Use $section_name to get the section title. Use "with" to only show it if it exists */}}
{{ with .Site.GetPage "section" $section_name }} {{ with $.Site.GetPage "section" $section_name }}
<h1 class="flex-none"> <h1 class="flex-none">
{{ $.Param "recent_copy" | default (i18n "recentTitle" .) }} {{ $.Param "recent_copy" | default (i18n "recentTitle" .) }}
</h1> </h1>
@ -53,3 +54,5 @@
</div> </div>
{{ end }} {{ end }}
{{ end }} {{ end }}
{{end}}