I have an Angular app which displays "cards" (think Google cards) in two columns. Because of this I end up with HTML looking a little like
<div class="leftColumn">
<div ng-repeat="module in Modules">
<span>{{module.UpTime.TotalTime}}</span>
<h2>{{module.ModuleName}}</h2>
...
</div>
</div>
<div class="rightColumn">
<!-- I want the template here too :) -->
</div>
How can I write the template code within leftColumn only once such that it can be used in both leftColumn and rightColumn. Note I realise this can be done with ng-include but why does this have to be a separate file, what if I want to specify the template within my current HTML page?