pageRouteInit.push(function ($routeProvider, $locationProvider) { var tpl = '

Bar

Welcome to the bar.

'; tpl += ''; tpl += ''; tpl += ''; tpl += ''; tpl += ''; tpl += '
ChairPersonDrinking
seat 1emptynone
seat 2youcoffee
seat 3catwater
'; $routeProvider.when('/example-ui/bar', { template: tpl, controller: PageFoo }); }); function PageFoo($scope, $http) { }