JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.angularjs.org/1.0.0rc6/angular-1.0.0rc6.js"></script>
<div ng-app="foo">
<ng-include src="'one.html'"></ng-include>
<br />
<ng-include src="'two.html'"></ng-include>
</div>
JavaScript
var foo = angular.module("foo", []);
foo.run(['$templateCache', function($templateCache) {
$templateCache.put('one.html', 'template <b>one</b>');
$templateCache.put('two.html', 'template <b>two</b>');
}]);