I try to find title for the current page (navigation)... the only way that work for me was: that is a little ugly.
<!-- ko foreach: router.navigationModel -->
<h1 data-bind="text: title, visible: isActive"></h1>
<!-- /ko -->
A better way will be this one... but I don't know the current index page
<!--<h1 data-bind="text: router.navigationModel()[____INDEX____].title"></h1>-->
Any suggestion to addressing this problem in a better way???