mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-11 05:57:36 +01:00
25 lines
694 B
HTML
25 lines
694 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" ng-app="oskar1">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="styles2.css" />
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
|
|
<script type="text/javascript" src="../inc/angular.min.js"></script>
|
|
<script type="text/javascript" src="app.js"></script>
|
|
<script type="text/javascript" src="controllers.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div ng-controller="ListCtrl">
|
|
<ul ng-repeat="item in items">
|
|
<li><a href="#/item/{{item.id}}">{{item.id}} : {{item.name}}</a></li>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div ng-view></div>
|
|
|
|
</body>
|
|
</html>
|