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