var myApp = new Ractive({
template: "#template",
el: '.section'
});
var newApp = new Ractive({
template: "#set",
el: '.table',
data: {
country: myApp.get('country')
}
});
myApp.on( 'push', function ( event, i ) {
newApp.set('country', myApp.get('country'));
});
<nav>
<li><a href="#">Lorem</a></li>
<li><a href="#">Lorem</a></li>
</nav>
<nav>
<h1>Navigation</h1>
<ul>
<li><a href="articles.html">Index of all articles</a></li>
<li><a href="today.html">Things sheeple need to wake up for today</a></li>
<li><a href="successes.html">Sheeple we have managed to wake</a></li>
</ul>
</nav>