I would like to set a route option label to that of the current url, e.g.
Router.route('/:_url', {
label: '_url',
action: function () {
this.render('home');
}
});
This is my helper:
if (Meteor.isClient) {
Template.home.helpers({
getLabel: function() {
return Router.current().route.options.label;
}
});
}
This is my template:
<template name="home">
hi
{{getLabel}}
</template>
When I visit locolhost:3000/alexander
I should see hi alexander
however I see hi _url
How can I get the _url variable to correctly resolve so I see hi alexander
?