From b5813c90fb38e748731a82a9059868b08729d9f5 Mon Sep 17 00:00:00 2001 From: Parvez Date: Fri, 19 Mar 2021 09:54:46 +0530 Subject: fixed compile issue **can't evaluate field Site in type navigation.Menu** (#97) first block was using 'with' block changing the context to menu, pointing the range to current context fixed the issue --- layouts/partials/main_menu.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/main_menu.html b/layouts/partials/main_menu.html index e485f8a..3258080 100644 --- a/layouts/partials/main_menu.html +++ b/layouts/partials/main_menu.html @@ -1,7 +1,7 @@ {{ with .Site.Menus.main }} -{{ end }} +{{ end }} \ No newline at end of file -- cgit v1.2.3