33 lines
703 B
HTML
33 lines
703 B
HTML
<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>
|
|
<tr ng-repeat="l in licences">
|
|
<td>{{l.name}}</td>
|
|
<td><button ng-click="showLicenseDesc(l.url)">Show description</button></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- Import de du framework Angular -->
|
|
<script src="../../node_modules/angular/angular.js"></script>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|