mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-17 21:01:26 +02:00
hubolib: Simplify map range
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user