shithub: hugo

Download patch

ref: ebab291c0e321d23b098684bacaf830a3979e310
parent: 75467cd7852852305549a6c71ac503bb4a57e716
author: Bjørn Erik Pedersen <[email protected]>
date: Fri Apr 5 12:58:52 EDT 2019

resources/page: Regenerate JSON wrapper

--- a/resources/page/page_marshaljson.autogen.go
+++ b/resources/page/page_marshaljson.autogen.go
@@ -17,6 +17,7 @@
 
 import (
 	"encoding/json"
+	"github.com/bep/gitmap"
 	"github.com/gohugoio/hugo/config"
 	"github.com/gohugoio/hugo/langs"
 	"github.com/gohugoio/hugo/media"
@@ -76,6 +77,7 @@
 	weight := p.Weight()
 	language := p.Language()
 	file := p.File()
+	gitInfo := p.GitInfo()
 	outputFormats := p.OutputFormats()
 	alternativeOutputFormats := p.AlternativeOutputFormats()
 	menus := p.Menus()
@@ -131,6 +133,7 @@
 		Weight                   int
 		Language                 *langs.Language
 		File                     source.File
+		GitInfo                  *gitmap.GitInfo
 		OutputFormats            OutputFormats
 		AlternativeOutputFormats OutputFormats
 		Menus                    navigation.PageMenus
@@ -185,6 +188,7 @@
 		Weight:                   weight,
 		Language:                 language,
 		File:                     file,
+		GitInfo:                  gitInfo,
 		OutputFormats:            outputFormats,
 		AlternativeOutputFormats: alternativeOutputFormats,
 		Menus:                    menus,