import (
"encoding/json"
+ "github.com/bep/gitmap"
"github.com/gohugoio/hugo/config"
"github.com/gohugoio/hugo/langs"
"github.com/gohugoio/hugo/media"
weight := p.Weight()
language := p.Language()
file := p.File()
+ gitInfo := p.GitInfo()
outputFormats := p.OutputFormats()
alternativeOutputFormats := p.AlternativeOutputFormats()
menus := p.Menus()
Weight int
Language *langs.Language
File source.File
+ GitInfo *gitmap.GitInfo
OutputFormats OutputFormats
AlternativeOutputFormats OutputFormats
Menus navigation.PageMenus
Weight: weight,
Language: language,
File: file,
+ GitInfo: gitInfo,
OutputFormats: outputFormats,
AlternativeOutputFormats: alternativeOutputFormats,
Menus: menus,