add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
import Ember from 'ember';
import config from './config/environment';
var Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.route('visus/visu-langues', { path: '/langues' });
this.route('visus/visu-carto', { path: '/cartographie' });
this.route('visus/visu-thematiques', { path: '/thematiques' });
this.route('visus/visu-discours', { path: '/discours' });
this.route('visus/visu-chrono', { path: '/chronologie' });
});
export default Router;