Adding IsNode & IsPage functions to Page & Node
authorspf13 <steve.francia@gmail.com>
Wed, 20 Aug 2014 01:27:13 +0000 (21:27 -0400)
committerspf13 <steve.francia@gmail.com>
Wed, 20 Aug 2014 01:27:13 +0000 (21:27 -0400)
docs/content/templates/variables.md
hugolib/node.go
hugolib/page.go

index 3cecf2169a453a4f76187fe3b9a4294fb390996c..f76a6465c1bc228fcece1e593c1c0ec763073dae 100644 (file)
@@ -43,6 +43,8 @@ matter, content or derived from file location.
 **.WordCount** The number of words in the content.<br>
 **.ReadingTime** The estimated time it takes to read the content in minutes.<br>
 **.Weight** Assigned weight (in the front matter) to this content, used in sorting.<br>
+**.IsNode** Always false for pages.<br>
+**.IsPage** Always true for page.<br>
 **.Site** See site variables below<br>
 
 ## Page Params
@@ -65,6 +67,8 @@ includes indexes, lists and the homepage.
 **.Url** The relative url for this node.<br>
 **.RSSLink** Link to the indexes' rss link <br>
 **.Data** The data specific to this type of node.<br>
+**.IsNode** Always true for nodes.<br>
+**.IsPage** Always false for nodes.<br>
 **.Site** See site variables below<br>
 
 ## Site Variables
index 2ff8d40cd1053984f6bd40ff2b5c7d4878091d08..724a3e8ee879703455cb4aee812874774016e3df 100644 (file)
@@ -47,6 +47,14 @@ func (n *Node) RSSlink() template.HTML {
        return n.RSSLink
 }
 
+func (n *Node) IsNode() bool {
+       return true
+}
+
+func (n *Node) IsPage() bool {
+       return !n.IsNode()
+}
+
 type UrlPath struct {
        Url       string
        Permalink template.HTML
index 5d399391f9d1227807708afad60ca4a9ee234ada..9f29630ecef8c2024eec8e63de6803cd89e50604 100644 (file)
@@ -85,6 +85,14 @@ func (p *Page) Plain() string {
        return p.plain
 }
 
+func (p *Page) IsNode() bool {
+       return false
+}
+
+func (p *Page) IsPage() bool {
+       return true
+}
+
 func (p *Page) setSummary() {
        if bytes.Contains(p.rawContent, summaryDivider) {
                // If user defines split: