You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

22 lines
635 B
HTML

<!doctype html>
<html xmlns:ng="http://angularjs.org/">
<head>
<title>my angular app</title>
<link rel="stylesheet" href="css/app.css"/>
</head>
<body style="display:none" ng:show="true">
<ul class="menu">
<li><a href="#/view1">view1</a></li>
<li><a href="#/view2">view2</a></li>
</ul>
<ng:include src="$route.current.template" scope="$route.current.scope"></ng:include>
<script src="lib/angular/angular.js" ng:autobind></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="js/filters.js"></script>
<script src="js/widgets.js"></script>
</body>
</html>