I’m a little perplexed. I’m moving from Evolution to Revolution and now I’m having problems with the wayfinder menu. Here is my code thus far:
Wayfinder call
<div id="navArea">
<div class="nav-wrap">
[[Wayfinder? &startId=`0` &outerTpl=`menuContainer` &outerClass=`group`]]
</div>
</div>
Outer Template = menuContainer
<ul id="topnav" [+wf.classes+]>[+wf.wrapper+]</ul>
The problem I’m having is by using this setup my output in the HTML is:
<div id="navArea">
<div class="nav-wrap">
<ul id="topnav" [+wf.classes+]>[+wf.wrapper+]</ul>
</div>
</div>
It seems like the system isn’t recognizing wayfinder at all, but if my Wayfinder call is:
<div id="navArea">
<div class="nav-wrap">
[[Wayfinder? &startId=`0`]]
</div>
</div>
I get an unordered list of my resources no problem. What am I missing? Did the syntax change?