diff --git a/config/_default/params.toml b/config/_default/params.toml index 4307428..33c3961 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -1,3 +1,6 @@ +[ananke] +show_recent_posts = true # show recent posts on the homepage + [ananke.social] icon_path = "ananke/socials/%s.svg" diff --git a/layouts/index.html b/layouts/index.html index 13cf52f..123cf3d 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -4,7 +4,7 @@ {{/* 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.show_recent_posts | default (true) }} + {{ $show_recent_posts := site.Params.ananke.show_recent_posts }} {{/* Check to see if the section is defined for ranging through it */}} {{range ($mainSections)}}