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.
Lastmod time.Time
Sitemap Sitemap
URLPath
+ IsHome bool
paginator *Pager
paginatorInit sync.Once
scratch *Scratch
"github.com/spf13/cast"
"github.com/spf13/hugo/helpers"
"github.com/spf13/viper"
+ "github.com/stretchr/testify/assert"
)
var EMPTY_PAGE = ""
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")
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
"github.com/spf13/hugo/target"
"github.com/spf13/hugo/tpl"
"github.com/spf13/viper"
+ "github.com/stretchr/testify/assert"
)
const (
{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 {