Angular JS Include

ng-include

Import other template
This example works only in server side.

<!DOCTYPE html>
<html ng-app>
<head>
	<meta charset="UTF-8">
	<title>ng-include</title>
	<script src="angular.min.js"></script>
</head>
<body>
<h3>happy turn</h3>
<div ng-include="'body.html'"></div>
</body>
</html>

template body.html

<h3>Hello World!</h3>