projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35a6059
)
Include Section Taxonomy into SiteInfo
author
Rinat Abdullin
<rinat.abdullin@gmail.com>
Tue, 13 May 2014 14:46:04 +0000
(20:46 +0600)
committer
spf13
<steve.francia@gmail.com>
Wed, 28 May 2014 23:31:50 +0000
(19:31 -0400)
This allows to build more complex pages, like :
http://martinfowler.com/tags/
hugolib/site.go
patch
|
blob
|
history
diff --git
a/hugolib/site.go
b/hugolib/site.go
index 7a0e69fdeb8556daa9115d073f3eadba1e8e5ca5..f2ea335aa42d27c139c910b6b1f77a0e35f0eaaf 100644
(file)
--- a/
hugolib/site.go
+++ b/
hugolib/site.go
@@
-76,6
+76,7
@@
type SiteInfo struct {
BaseUrl template.URL
Taxonomies TaxonomyList
Indexes *TaxonomyList // legacy, should be identical to Taxonomies
+ Sections Taxonomy
Recent *Pages
Menus *Menus
Title string
@@
-495,6
+496,7
@@
func (s *Site) assembleTaxonomies() {
s.Info.Taxonomies = s.Taxonomies
s.Info.Indexes = &s.Taxonomies
+ s.Info.Sections = s.Sections
}
func (s *Site) assembleSections() {