<html> <head> <meta charset="utf8"> <title>Exercice: itération</title> </head> <!-- Déclaration de l'application --> <body ng-app="Exo"> <div ng-controller="MainCtrl"> <h1>Github Licenses</h1> <table> <thead> <tr> <th>Name</th> <th>Actions</th> </tr> </thead> <tbody> <!-- Compléter ici le template --> </tbody> </table> </div> <!-- Import de du framework Angular --> <script src="../node_modules/angular/angular.js"></script> <script src="app.js"></script> </body> </html>