import {Component, Directive} from 'angular2/angular2'; import {App, IonicApp, IonicView, Register} from 'ionic/ionic'; @IonicView({ template: '' + 'Heading' + '' + '' + '' + '' + '' + '' + '' + '' + '' + `

All Genres

Jan 17 2015

Alternative Blues
` + '
' }) export class FirstPage { constructor(app: IonicApp) { this.app = app; } toggleMenu() { console.log('TOGGLE'); this.app.getComponent('myAside').toggle(); } } @App({ template: ` Menu Your Profile Playlists Artists `, routes: [ { path: '/first', component: FirstPage, root: true } ] }) class MyApp { constructor() { } }