Michel Paronnaud
Michel Paronnaud
I see the same problem and don't have a workaround at the moment.
Hello @hiqsociety, you can use layout to solve your problem. There is a small example: **layout.pug** ```pug :go:func(arg) pageTitle string, categories []Category, currentYear int doctype 5 html(lang="en") head meta(charset='UTF-8') meta(name='viewport'...
Hello @WarL0ckNet, you can check the folder `testdata/v2`. There is a file about the iteration feature. In `iteration.pug`: ```pug ul each val, index in map[int]string{1:"one",2:"two",3:"three"} li= strconv.Itoa(index) + ": "...