index.html 622 Bytes
Newer Older
Richard Torenvliet's avatar
Richard Torenvliet committed
1 2 3 4
<!DOCTYPE html>
<html ng-app="Interactive" ng-controller="AppCtrl">
  <head>
    <title ng-bind="pageTitle"></title>
5
    <meta name="viewport" content="width=device-width, minimal-ui, initial-scale=1, maximum-scale=1, user-scalable=no">
Richard Torenvliet's avatar
Richard Torenvliet committed
6 7 8 9 10 11 12 13 14 15 16 17

    <!-- compiled CSS --><% styles.forEach( function ( file ) { %>
    <link rel="stylesheet" type="text/css" href="<%= file %>" /><% }); %>

    <!-- compiled JavaScript --><% scripts.forEach( function ( file ) { %>
    <script type="text/javascript" src="<%= file %>"></script><% }); %>
  </head>
  <body>
      <div class="container" ui-view="main">
      </div>
  </body>
</html>