fixed #171. RSSlink is now RSSLink (and matches existing docs).

Added backwards compatibility accessor for existing templates.
This commit is contained in:
spf13 2014-01-18 22:16:19 -05:00
parent ae15ff0968
commit f0634ec059
2 changed files with 489 additions and 485 deletions

View file

@ -14,25 +14,29 @@
package hugolib
import (
"html/template"
"time"
"html/template"
"time"
)
type Node struct {
RSSlink template.HTML
Site SiteInfo
// layout string
Data map[string]interface{}
Title string
Description string
Keywords []string
Date time.Time
UrlPath
RSSLink template.HTML
Site SiteInfo
// layout string
Data map[string]interface{}
Title string
Description string
Keywords []string
Date time.Time
UrlPath
}
func (n Node) RSSlink() template.HTML {
return n.RSSLink
}
type UrlPath struct {
Url string
Permalink template.HTML
Slug string
Section string
Url string
Permalink template.HTML
Slug string
Section string
}

File diff suppressed because it is too large Load diff