<!doctype html>
<html ng-app>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div ng-controller="MyCtrl">
<ng-include src="'addressform.html'" ng-init="name = 'Mike'"></ng-include>
<ng-include src="'addressform.html'" ng-init="name = 'byke'"></ng-include>
</div>
</body>
</html>
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
}
div[contentEditable] {
cursor: pointer;
background-color: #D0D0D0;
margin-bottom: 1em;
padding: 1em;
}
partial of type {{name}}<br>