Would it be possible to incorporate ng-repeat within a div like the following?
<li ng-repeat="image in HomeCtrl.images.data" >
<a ng-href="@{{ image.code }}"><img ng-src="@{{ image.url }}" ></a>
</li>
Displayed below is the images array:
{
"data": {
"url": [
"https://url1.com",
"https://url2.com"
],
"code": [
"3cs14vs4",
"512631va"
]
}
}
Please note that the images array can be found inside HomeCtrl.