From bd022534bc801fcf394b955346ee4ce94e3dbc39 Mon Sep 17 00:00:00 2001 From: spf13 Date: Tue, 8 Apr 2014 21:40:38 -0400 Subject: [PATCH] Adding Params to node for easy template access of page.params without throwing errors. --- hugolib/node.go | 1 + 1 file changed, 1 insertion(+) diff --git a/hugolib/node.go b/hugolib/node.go index 44328ff1..fa60bb51 100644 --- a/hugolib/node.go +++ b/hugolib/node.go @@ -26,6 +26,7 @@ type Node struct { Title string Description string Keywords []string + Params map[string]interface{} Date time.Time UrlPath } -- 2.30.2