mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-17 18:34:41 -04:00
hubolib: Simplify map range
This commit is contained in:
parent
ff2498ee89
commit
0a0db9cd25
@ -228,7 +228,7 @@ func (h *HugoSites) createMissingPages() error {
|
|||||||
tax := s.Taxonomies[plural]
|
tax := s.Taxonomies[plural]
|
||||||
foundTaxonomyPage := false
|
foundTaxonomyPage := false
|
||||||
foundTaxonomyTermsPage := false
|
foundTaxonomyTermsPage := false
|
||||||
for key, _ := range tax {
|
for key := range tax {
|
||||||
for _, p := range taxonomyPages {
|
for _, p := range taxonomyPages {
|
||||||
if p.sections[0] == plural && p.sections[1] == key {
|
if p.sections[0] == plural && p.sections[1] == key {
|
||||||
foundTaxonomyPage = true
|
foundTaxonomyPage = true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user