Add IsHome
authorbep <bjorn.erik.pedersen@gmail.com>
Thu, 28 May 2015 01:19:59 +0000 (03:19 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Thu, 28 May 2015 01:20:08 +0000 (03:20 +0200)
To determine if a page is the "Home Page" has inspired lots of creativity in the template department.

This commit makes it simpler: IsHome will tell the truth.

hugolib/node.go
hugolib/page_test.go
hugolib/site.go
hugolib/site_test.go

index cbc314049b55ca2f627284617945a6a111e7663d..1732cac161751e80e99e91e90877d352f86c0c3e 100644 (file)
@@ -33,6 +33,7 @@ type Node struct {
        Lastmod     time.Time
        Sitemap     Sitemap
        URLPath
+       IsHome        bool
        paginator     *Pager
        paginatorInit sync.Once
        scratch       *Scratch
index afbedac909e9956dd825996bf1095c5a178d1d9e..9a65cff47032248f13f8462767d1c1377f56f448 100644 (file)
@@ -11,6 +11,7 @@ import (
        "github.com/spf13/cast"
        "github.com/spf13/hugo/helpers"
        "github.com/spf13/viper"
+       "github.com/stretchr/testify/assert"
 )
 
 var EMPTY_PAGE = ""
@@ -368,6 +369,8 @@ func TestCreateNewPage(t *testing.T) {
        if err != nil {
                t.Fatalf("Unable to create a page with frontmatter and body content: %s", err)
        }
+
+       assert.False(t, p.IsHome)
        checkPageTitle(t, p, "Simple")
        checkPageContent(t, p, "<p>Simple Page</p>\n")
        checkPageSummary(t, p, "Simple Page")
index 10fd5a8c7105553fa7baba2dcd887ecdb4d6675e..1a596bdcf435a011b9e7627087c3166c4df4154a 100644 (file)
@@ -1233,6 +1233,7 @@ func (s *Site) RenderSectionLists() error {
 func (s *Site) newHomeNode() *Node {
        n := s.NewNode()
        n.Title = n.Site.Title
+       n.IsHome = true
        s.setURLs(n, "/")
        n.Data["Pages"] = s.Pages
        return n
index b5d18e710be2aa887781fe561fc622195519ef49..65ab241b757d2754b56f09eaf907aab2cc83ee0e 100644 (file)
@@ -16,6 +16,7 @@ import (
        "github.com/spf13/hugo/target"
        "github.com/spf13/hugo/tpl"
        "github.com/spf13/viper"
+       "github.com/stretchr/testify/assert"
 )
 
 const (
@@ -419,6 +420,10 @@ func doTest404ShouldAlwaysHaveUglyUrls(t *testing.T, uglyURLs bool) {
                {filepath.FromSlash("sitemap.xml"), "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>\n<root>SITEMAP</root>"},
        }
 
+       for _, p := range s.Pages {
+               assert.False(t, p.IsHome)
+       }
+
        for _, test := range tests {
                file, err := hugofs.DestinationFS.Open(test.doc)
                if err != nil {