Unable to understand why this doesn’t work also try the {{with what I am doing wrong?
my config.toml
[menu]
[[menu.main]]
identifier = "home"
name = "Home"
url = "/"
weight = 1
[[menu.main]]
identifier = "about"
name = "About us"
url = "/about"
weight = 2
[[menu.main]]
identifier = "category1"
name = "plastic"
url = "/plastic"
parent = "about"
pre = "Some text here .. "
iconClass = "duck"
weight = 1
trying to use this in layouts which is under the range menu and range children I can use the {{.name}} and {{.Pre}} but why cant it
{{ if eq .iconClass "duck" }}
some custom duck text and svg in this section
{{ else if eq .iconClass "soldier"}}
some custom toy soldier text and svg in this section
{{end}}
the error I receive is unterminated quoted string
I find similar post in the form but with solution maybe some one can provide there feedback on this thanks.