Hi dsquare,
you say that
home is a onepager and the children are listed by getResources. So the links in your menu instead of (e.g.)
home/teaser.html should be
home#teaser (given
teaser is the name of the anchor).
Let's assume the
menutitle of
teaser.html is
teaser (likewise for the other children). Then use [[+menutitle]] instead of [[+wf.link]] in the Wayfinder
&rowTpl chunk:
<li><a href="home#[[+menutitle]]">[[+menutitle]]</a></li>
and set the right anchor in the
&tpl chunk of the getResources call:
<a id="[[+menutitle]]"></a>
<h2>[[+menutitle]]</h2>
[[+content]]
Note:
You could use the [[+id]] of a child resource instead of [[+menutitle]]; but in this case you have to prepend the anchor's id by a letter (say a), because pure numbers are not allowed here:
rowTpl chunk:
<li><a href="home#a[[+id]]">[[+menutitle]]</a></li>
tpl chunk:
<a id="a[[+id]]"></a>
<h2>[[+menutitle]]</h2>
[[+content]]
Hope that helps (Didn't test it).