mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

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

* allow_multiple_mainsection

* removed comment

---------

Co-authored-by: Blackeye <>
1 files modified
15 ■■■■■ changed files
layouts/index.html 15 ●●●●● patch | view | raw | blame | history
layouts/index.html
@@ -4,17 +4,18 @@
  </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. */}}
  {{ $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 */}}
    {{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 }}
  {{ 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">
      {{/* 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">
            {{ $.Param "recent_copy" | default (i18n "recentTitle" .) }}
          </h1>
@@ -53,3 +54,5 @@
      </div>
  {{ end }}
{{ end }}
{{end}}