import (
"fmt"
- "github.com/spf13/hugo/helpers"
"html/template"
+
+ "github.com/spf13/hugo/helpers"
)
var (
+ // CommitHash contains the current Git revision. Use make to build to make
+ // sure this gets set.
CommitHash string
- BuildDate string
+
+ // BuildDate contains the date of the current build.
+ BuildDate string
)
var hugoInfo *HugoInfo
package hugolib
+// Prev returns the previous page reletive to the given page.
func (p Pages) Prev(cur *Page) *Page {
for x, c := range p {
if c.UniqueID() == cur.UniqueID() {
return nil
}
+// Next returns the next page reletive to the given page.
func (p Pages) Next(cur *Page) *Page {
for x, c := range p {
if c.UniqueID() == cur.UniqueID() {
"io"
)
+// ShowPlan prints a build plan to the given Writer.
+// Useful for debugging.
func (s *Site) ShowPlan(out io.Writer) (err error) {
if s.Source == nil || len(s.Source.Files()) <= 0 {
fmt.Fprintf(out, "No source files provided.\n")