node to page: Export GetPage to the templates
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 12 Nov 2016 16:30:21 +0000 (17:30 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 22 Nov 2016 08:57:03 +0000 (09:57 +0100)
Updates #2297

hugolib/node_as_page_test.go
hugolib/page_collections.go
hugolib/site.go

index 5045174940ebda3586e98792bf29731da48bcd42..865e2aa13385557f0a6e348be07dcf72499d6f9a 100644 (file)
@@ -70,6 +70,7 @@ func TestNodesAsPage(t *testing.T) {
                "# Pages: 9",
                "Date: 2009-01-02",
                "Lastmod: 2009-01-03",
+               "GetPage: Section1 ",
        )
 
        assertFileContent(t, filepath.Join("public", "sect1", "regular1", "index.html"), false, "Single Title: Page 01", "Content Page 01")
@@ -543,6 +544,7 @@ Menu Item: {{ .Name }}
 {{ end }}
 Date: {{ .Date.Format "2006-01-02" }}
 Lastmod: {{ .Lastmod.Format "2006-01-02" }}
+GetPage: {{ with .Site.GetPage "section" "sect1" }}{{ .Title }}{{ end }} 
 `)
 
        writeSource(t, filepath.Join("layouts", "_default", "single.html"), `
index e1ba36c1802f5185274d91978f339b6a99a0096f..a6050f6ca0ed8fbfdfd369beca434ba62afdeffc 100644 (file)
@@ -65,8 +65,8 @@ func (c *PageCollections) findPagesByNodeType(n PageType) Pages {
        return c.findPagesByNodeTypeIn(n, c.Pages)
 }
 
-func (c *PageCollections) getPage(n PageType, path ...string) *Page {
-       pages := c.findPagesByNodeTypeIn(n, c.Pages)
+func (c *PageCollections) getPage(typ PageType, path ...string) *Page {
+       pages := c.findPagesByNodeTypeIn(typ, c.Pages)
 
        if len(pages) == 0 {
                return nil
index 910f887e50022e4872edbc65a9e5ea7b3c12e57c..c20c70eb8243cbcfaf447edb001263c9f14caecc 100644 (file)
@@ -1653,6 +1653,19 @@ func (s *Site) Stats() {
 
 }
 
+// GetPage looks up a index page of a given type in the path given.
+// This method may support regular pages in the future, but currently it is a
+// convenient way of getting the home page or
+// a section from a template:
+//    {{ with .Site.GetPage "section" "blog" }}{{ .Title }}{{ end }}
+//
+// This will return nil when no page could be found.
+//
+// The valid page types are: home, section, taxonomy and taxonomyTerm
+func (s *SiteInfo) GetPage(typ PageType, path ...string) *Page {
+       return s.getPage(typ, path...)
+}
+
 func (s *SiteInfo) permalink(plink string) string {
        return s.permalinkStr(plink)
 }