From 76989b98ea0ef6925b788aa1fac01040099d0b6c Mon Sep 17 00:00:00 2001 From: Dmitry <88618532+DrupalDoesNotExists@users.noreply.github.com> Date: Sun, 8 Jan 2023 14:03:03 +0300 Subject: [PATCH] Fix "unclosed action" issue on v0.68.3/extended https://github.com/Masellum/hugo-theme-nostyleplease/issues/3#issue-1524457299 --- layouts/partials/menu_item.html | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/layouts/partials/menu_item.html b/layouts/partials/menu_item.html index 5fa3caa..ec0a1af 100644 --- a/layouts/partials/menu_item.html +++ b/layouts/partials/menu_item.html @@ -13,14 +13,7 @@ {{- end -}} {{- if $item.post_list -}} - {{ partial "post_list.html" (dict - "context" . - "section" $item.post_list.section - "limit" $item.post_list.limit - "show_more" $item.post_list.show_more - "show_more_text" $item.post_list.show_more_text - "show_more_url" $item.post_list.show_more_url - ) -}} + {{ partial "post_list.html" (dict "context" . "section" $item.post_list.section "limit" $item.post_list.limit "show_more" $item.post_list.show_more "show_more_text" $item.post_list.show_more_text "show_more_url" $item.post_list.show_more_url) -}} {{- end -}} {{- end -}}