I can not properly configure the link to a template.
I have a template and a template addFriends home. accesible from the drop-down menu
I configured “route.js”
Router.route('add', {
name: "addFriends",
template: "addFriends",});
I added the link href:
< a href="{{pathFor 'addFriends'}}">Add< / a >
Can you help me please !
you have to write them like this now:
<a href="{{pathFor route='post.show'}}">Post Show</a>
It does not work …
But why "post " in { { pathFor route = ’ post.show '} }
What are you write ‘Post.show’ ?( Post )
that’s an example route from the guide (you now need to specify route="" after pathFor), https://github.com/iron-meteor/iron-router/blob/devel/Guide.md#path-and-link-template-helpers
{{pathFor route='addFriends'}}
But, as long as you have that route defined, you can alternatively just write a plain html anchor
<a href="/addFriends">Add friends</a>