Skip to content

Instantly share code, notes, and snippets.

@samuelsimoes
Last active August 29, 2015 14:04
Show Gist options
  • Save samuelsimoes/ae4e75a27c252ee2fcea to your computer and use it in GitHub Desktop.
Save samuelsimoes/ae4e75a27c252ee2fcea to your computer and use it in GitHub Desktop.
<!-- directive that make the partial inclusion -->
<div ng-include src="my_template.html"></div>
<!-- my_template.html -->
<div ng-controller="MyController" class="my-container">
<strong>My template</strong>
</div>
<!-- ---- -->
<!-- or -->
<!-- ---- -->
<!-- directive that make the partial inclusion -->
<div ng-include src="my_template.html" ng-controller="MyController" class="my-container"></div>
<!-- my_template.html -->
<strong>My template</strong>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment