mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-08 17:22:46 +00:00
the following is a draft for the release page that should explain most of it: * Index page: the way main sections were evaluated was unclear and probably changed much from the original design in GoHugo. This has been fixed and the main sections are now evaluated in a more consistent way. This might affect what is shown on your website, so open a discussion if you see something wrong and try to explain exactly what you expected to see in sense of included posts and order of those posts. The old way did this: check all configured main sections (or post, if nothing is set) > range through the section and display the first n+m posts (n = number of full previews, m = number of title previews only). The new way does this: load all posts in the main sections > range through the collection and display the first n+m posts (n = number of full previews, m = number of title previews only). Basically, the old way took every single section you configured and displayed them separate, the new way takes all posts from all sections and displays them in one list. This is more consistent and should be more predictable for you as a user. It's also the way it was intended to work from the beginning according to the documentation. closes #686 Signed-off-by: Patrick Kollitsch <patrick@davids-neighbour.com>
43 lines
1.7 KiB
HTML
43 lines
1.7 KiB
HTML
{{ define "main" }}
|
|
<article class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy {{ $.Param "text_color" | default "mid-gray" }}">
|
|
{{ .Content }}
|
|
</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") }}
|
|
{{ $show_recent_posts := site.Params.ananke.show_recent_posts }}
|
|
{{ $section := where $.Site.RegularPages "Section" "in" $mainSections }}
|
|
{{ $section_count := len $section }}
|
|
|
|
{{ if and ($show_recent_posts) (ge $section_count 1) }}
|
|
<div class="pa3 pa4-ns w-100 w-70-ns center">
|
|
{{ $n_posts := $.Param "recent_posts_number" | default 3 }}
|
|
|
|
<section class="w-100 mw8">
|
|
{{/* Range through the first $n_posts items of the section */}}
|
|
{{ range (first $n_posts $section) }}
|
|
<div class="relative w-100 mb4">
|
|
{{ .Render "summary-with-image" }}
|
|
</div>
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ if ge $section_count (add $n_posts 1) }}
|
|
<section class="w-100">
|
|
<h1 class="f3">{{ i18n "more" }}</h1>
|
|
{{/* Now, range through the next four after the initial $n_posts items. Nest the requirements, "after" then "first" on the outside */}}
|
|
{{ range (first 4 (after $n_posts $section)) }}
|
|
<h2 class="f5 fw4 mb4 dib {{ cond (eq $.Site.Language.LanguageDirection "rtl") "ml3" "mr3" }}">
|
|
<a href="{{ .RelPermalink }}" class="link black dim">
|
|
{{ .Title }}
|
|
</a>
|
|
</h2>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
|