Adding the frontend code

Time to start building the app. Create src/frontend/index.html as follows:

 <!DOCTYPE html> < html ng-app="app" > <head> <meta charset="UTF-8"/> <title>Keyword Wrangler</title> <link rel="stylesheet" \ href="bower_components/bootstrap/dist/css/bootstrap.css"> <link rel="stylesheet" href="bower_components/angular-grid/ng-\ grid.min.css"> <style> .gridStyle { margin-top: 20px; height: 800px; } </style> </head> <body> <div id="main" class="container"> <div class="span12" ng-view></div> </div> <script src="bower_components/async/lib/async.js"></script> <script src="bower_components/jquery/dist/jquery.js"></script> <script src="bower_components/lodash/dist/lodash.js"></script> <script src="bower_components/angular/angular.js"></script> ...

Get The Node Craftsman Book now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.